Skip to content

Commit

Permalink
Improve docker-compose file: admin password and volume for database
Browse files Browse the repository at this point in the history
Fixes: #1169
  • Loading branch information
Baptiste Jonglez authored and zorun committed Jul 13, 2023
1 parent 7ef954e commit c681fcd
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# This is an example. Please change the configuration variables listed here.
#
# This example uses a volume to persist the sqlite database outside of the container,
# please adapt the local path. If you use a custom PUID and PGID, you need to create
# the local path beforehand with the correct user/group.
#
# You can generate an admin password with: docker run -it --rm --entrypoint ihatemoney ihatemoney/ihatemoney:latest generate_password_hash
# IMPORTANT: replace every dollar character in the result with a double dollar ($ -> $$)
# To disable admin access, simply set the password to an empty string (ADMIN_PASSWORD=)
#
# See https://ihatemoney.readthedocs.io/en/latest/configuration.html to understand all settings.

version: "3.9"

Expand All @@ -7,8 +17,8 @@ services:
image: ihatemoney/ihatemoney:latest
environment:
- DEBUG=False
- ACTIVATE_ADMIN_DASHBOARD=False
- ACTIVATE_DEMO_PROJECT=True
- ACTIVATE_ADMIN_DASHBOARD=False
- ADMIN_PASSWORD=
- ALLOW_PUBLIC_PROJECT_CREATION=True
- BABEL_DEFAULT_TIMEZONE=UTC
Expand All @@ -30,5 +40,7 @@ services:
- PORT=8000
- PUID=0
- PGID=0
volumes:
- /path/to/local/dir/for/sqlite/db:/database
ports:
- "8000:8000"

0 comments on commit c681fcd

Please sign in to comment.