At the moment the Dockerfile copies in the config file:
|
COPY ./config.yaml /code/config.yaml |
But what we want is for the user to define their own config file.
We can define a VOLUME which tells the user where we expect the config file to be:
When the container starts, if no config file is found, we just default to showing all tables, or raise an error.