Skip to content

Commit

Permalink
fix: use correct DB version in docker-compose.yml (#18897)
Browse files Browse the repository at this point in the history
  • Loading branch information
teleivo authored Oct 23, 2024
1 parent 1e989ce commit 47df500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
image: busybox # busybox wget version does not have --no-clobber, so we need to do the [ -f ] test
command: sh -c '[ -f dump.sql.gz ] && echo "dump.sql.gz exists" || wget --output-document dump.sql.gz $$DHIS2_DB_DUMP_URL' # only download file if it does not exist
environment:
DHIS2_DB_DUMP_URL: "${DHIS2_DB_DUMP_URL:-https://databases.dhis2.org/sierra-leone/dev/dhis2-db-sierra-leone.sql.gz}"
DHIS2_DB_DUMP_URL: "${DHIS2_DB_DUMP_URL:-https://databases.dhis2.org/sierra-leone/2.41/dhis2-db-sierra-leone.sql.gz}"
working_dir: /opt/dump
volumes:
- db-dump:/opt/dump
Expand Down

0 comments on commit 47df500

Please sign in to comment.