Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are many configuration values that you can override, for example the default admin email address. To do this you will need to edit the custom.conf file used by clowder. This file is located in the clowder-custom volume. You can either change the content of this folder directly (use docker volume inspect clowder_clowder_1 to find the actual location on disk), or you can exec into the running docker container (docker exec -ti clowder_clowder_1 /bin/bash) and goto the folder /home/clowder/custom. You can edit the custom.conf file to fit your needs. Once you finish making the changes you can exit the container using exit, this will not stop the container. You will need to restart the clowder container, which can be done using docker restart clowder_clowder_1.

Another way is to make any changes before you start the full stack. You can run just the clowder instance and make changes using: `docker-compose run --no-deps clowder /bin/bash` this will start just the clowder container and give you a bash prompt. You can make changes to the custom.conf and play.plugins and exit. If you now start the full stack it will use these updated changes when starting clowder.

A list of all values that can be changed can be found at https://opensource.ncsa.illinois.edu/bitbucket/projects/CATS/repos/clowder/browse/conf/application.conf.

...