We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment the Dockerfile copies in the config file:
piccolo-admin-docker/Dockerfile
Line 7 in 376f0ac
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:
VOLUME
VOLUME /config
When the container starts, if no config file is found, we just default to showing all tables, or raise an error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment the Dockerfile copies in the config file:
piccolo-admin-docker/Dockerfile
Line 7 in 376f0ac
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.
The text was updated successfully, but these errors were encountered: