Browse Source

remove timezone config

pull/358/head
yedf2 4 years ago
parent
commit
101413f82a
  1. 4
      helper/compose.store.yml

4
helper/compose.store.yml

@ -4,7 +4,6 @@ services:
image: 'mysql:5.7' image: 'mysql:5.7'
volumes: volumes:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
environment: environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1 MYSQL_ALLOW_EMPTY_PASSWORD: 1
command: command:
@ -19,7 +18,6 @@ services:
command: postgres --max_prepared_transactions=1000 command: postgres --max_prepared_transactions=1000
volumes: volumes:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
environment: environment:
POSTGRES_PASSWORD: mysecretpassword POSTGRES_PASSWORD: mysecretpassword
POSTGRES_DB: dtm POSTGRES_DB: dtm
@ -30,13 +28,11 @@ services:
image: 'redis' image: 'redis'
volumes: volumes:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
ports: ports:
- '6379:6379' - '6379:6379'
mongo: mongo:
image: yedf/mongo-rs image: yedf/mongo-rs
volumes: volumes:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
ports: ports:
- '27017:27017' - '27017:27017'

Loading…
Cancel
Save