From 7517411140c9a2b49e23bc36ebbfc048a4337f83 Mon Sep 17 00:00:00 2001 From: Kyle Gabriel <kyletgabriel@gmail.com> Date: Sun, 25 Aug 2019 21:49:22 -0400 Subject: [PATCH] Fix timezone issue --- docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 25a079c..c706f7b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,6 @@ services: build: ./flask_app volumes: - ttn_tracker_var:/var/ttn_tracker - - /etc/localtime:/etc/localtime:ro # Use timezone of the host (read-only) ports: - "8000:8000" command: gunicorn -w 1 --worker-class gthread --bind :8000 app:app @@ -20,7 +19,6 @@ services: build: ./nginx volumes: - ttn_tracker_var:/var/ttn_tracker - - /etc/localtime:/etc/localtime:ro # Use timezone of the host (read-only) ports: - "80:80" - "443:443"