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
This would allow the changes to the conf file to be persistent between reboots.
The text was updated successfully, but these errors were encountered:
You can do this using volumes:
docker volume create cerebro_conf docker run --name cerebro -v cerebro_conf:/opt/cerebro/conf -dp 9000:9000 lmenezes/cerebro
On MacOS, the volume is hidden and run in a small VM. To edit application.conf on your host machine:
docker cp cerebro:/opt/cerebro/conf/application.conf ~/Downloads/application.conf # edit ~/Downloads/application.conf docker cp ~/Downloads/application.conf cerebro:/opt/cerebro/conf/application.conf docker restart cerebro
Sorry, something went wrong.
No branches or pull requests
This would allow the changes to the conf file to be persistent between reboots.
The text was updated successfully, but these errors were encountered: