docker: use demo true/false instead of y/n

This commit is contained in:
pedro 2024-10-16 22:07:40 +02:00
parent ce9a69d6f7
commit 1751dc98c2
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ services:
environment:
- DEBUG=true
- DOMAIN=${DOMAIN:-localhost}
- DEMO=${DEMO:-n}
- DEMO=${DEMO:-false}
- PREDEFINED_TOKEN=${PREDEFINED_TOKEN:-}
volumes:
- .:/opt/devicehub-django

View File

@ -30,7 +30,7 @@ deploy() {
# TODO: one error on add_user, and you don't add user anymore
./manage.py add_user "${INIT_ORG}" "${INIT_USER}" "${INIT_PASSWD}" "${ADMIN}" "${PREDEFINED_TOKEN}"
if [ "${DEMO:-}" = 'y' ]; then
if [ "${DEMO:-}" = 'true' ]; then
./manage.py up_snapshots example/snapshots/ "${INIT_USER}"
fi
fi