2019-08-20 19:37:45 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
flucky-db:
|
2019-08-25 18:59:45 +00:00
|
|
|
container_name: postgres
|
2019-08-20 19:37:45 +00:00
|
|
|
environment:
|
2020-05-03 12:04:08 +00:00
|
|
|
- PGTZ=Europe/Berlin
|
|
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
- TZ=Europe/Berlin
|
2020-10-07 21:38:27 +00:00
|
|
|
image: postgres:13-alpine
|
2019-08-20 19:37:45 +00:00
|
|
|
ports:
|
2019-12-07 15:53:49 +00:00
|
|
|
- 5432:5432
|
2019-08-20 19:37:45 +00:00
|
|
|
restart: always
|
|
|
|
volumes:
|
2019-08-25 18:59:45 +00:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|