How to edit whoogle.env #828
-
|
I've got a local install using docker and I'm a bit confused how to edit the whoogle.env file to add permanent settings. Where is this file? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This is the template file: whoogle.template.env Since you're using docker, as the instructions mention on top of that template file, you can uncomment the If you're using docker run then the alternative would be --env-file option, something like |
Beta Was this translation helpful? Give feedback.
This is the template file: whoogle.template.env
Since you're using docker, as the instructions mention on top of that template file, you can uncomment the
env_filesection from the docker-compose.yml file.If you're using docker run then the alternative would be --env-file option, something like
docker run --env-file ./whoogle.envwhere the value provided to the--env-filehere and in the compose file would be the location of the environment file.