kanton timezone madness

This commit is contained in:
2022-09-25 13:22:56 +02:00
parent b8a5a3188f
commit c90b45e507

View File

@ -62,6 +62,7 @@ services:
echo LicenseKey $${MAXMIND_LICENSE_KEY} >> /etc/GeoIP.conf &&
echo 'Updating geoip data, first time could be slow...' &&
geoipupdate &&
pip install tzdata &&
python karrot-backend.pyz migrate &&
python karrot-backend.pyz server
"
@ -89,7 +90,10 @@ services:
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_DB=0
command: "python karrot_backend.pyz worker"
command:
sh -c "
pip install tzdata &&
python karrot-backend.pyz worker"
redis:
image: "redis:6-alpine"