diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index d0de00a..e7a0dd5 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -9,6 +9,8 @@ services: dockerfile: Dockerfile.dev volumes: - .:/home/playground/metafacture-playground + - '/etc/timezone:/etc/timezone:ro' # Sync with host + - '/etc/localtime:/etc/localtime:ro' # Sync with host ports: - 8280:8280 - - 9630:9630 \ No newline at end of file + - 9630:9630 diff --git a/docker-compose.yml b/docker-compose.yml index 83ac82b..b163b79 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,5 +9,8 @@ services: dockerfile: Dockerfile.prod ports: - 3000:3000 + volumes: + - '/etc/timezone:/etc/timezone:ro' # Sync with host + - '/etc/localtime:/etc/localtime:ro' # Sync with host mem_limit: 8192m - cpus: 0.5 \ No newline at end of file + cpus: 0.5