Skip to content

Commit

Permalink
revert timzone fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vildead committed Oct 7, 2024
1 parent 39b67a8 commit 58f7995
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
3 changes: 0 additions & 3 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ DB_PASSWORD=daisy

# Backup configuration
BACKUP_VOLUME=../backups

# Timezone
TZ=Europe/Paris
13 changes: 0 additions & 13 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ services:
- '5000'
environment:
- DJANGO_SETTINGS_MODULE=elixir_daisy.settings_compose
- TZ=${TZ:-UTC}
volumes:
- statics:/static
- solrdata:/solr
Expand All @@ -26,7 +25,6 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD:-daisy}
POSTGRES_USER: ${DB_USER:-daisy}
POSTGRES_DB: ${DB_NAME:-daisy}
TZ: ${TZ:-UTC}
networks:
- daisy_network
volumes:
Expand All @@ -35,8 +33,6 @@ services:
nginx:
build: ./docker/nginx
restart: unless-stopped
environment:
- TZ=${TZ:-UTC}
volumes:
- statics:/public/static:ro
ports:
Expand All @@ -50,8 +46,6 @@ services:
solr:
build: ./docker/solr
restart: unless-stopped
environment:
- TZ=${TZ:-UTC}
ports:
- "8983:8983"
networks:
Expand All @@ -62,8 +56,6 @@ services:
mq:
image: rabbitmq:3.9-management-alpine
restart: unless-stopped
environment:
- TZ=${TZ:-UTC}
networks:
- daisy_network
ports:
Expand All @@ -73,8 +65,6 @@ services:
flower:
image: mher/flower:0.9.7
command: --broker=amqp://guest:guest@mq:5672// --broker_api=http://guest:guest@mq:15672/api/
environment:
- TZ=${TZ:-UTC}
ports:
- "5555:5555"
restart: unless-stopped
Expand All @@ -87,7 +77,6 @@ services:
build: .
environment:
- DJANGO_SETTINGS_MODULE=elixir_daisy.settings_compose
- TZ=${TZ:-UTC}
volumes:
- .:/code
depends_on:
Expand All @@ -102,7 +91,6 @@ services:
build: .
environment:
- DJANGO_SETTINGS_MODULE=elixir_daisy.settings_compose
- TZ=${TZ:-UTC}
volumes:
- .:/code
depends_on:
Expand All @@ -125,7 +113,6 @@ services:
- SOLR_PORT=8983
- RABBITMQ_MANAGEMENT_PORT=${RABBITMQ_MANAGEMENT_PORT:-15672}
- BACKUP_VOLUME=${BACKUP_VOLUME:-../backups}
- TZ=${TZ:-UTC}
volumes:
- ${BACKUP_VOLUME:-../backups}:/backups
- .:/code
Expand Down

0 comments on commit 58f7995

Please sign in to comment.