flucky/docker-compose.yml

15 lines
312 B
YAML
Raw Permalink Normal View History

2019-08-20 19:37:45 +00:00
version: '3'
services:
flucky-db:
container_name: postgres
2019-08-20 19:37:45 +00:00
environment:
- PGTZ=Europe/Berlin
- POSTGRES_PASSWORD=postgres
- TZ=Europe/Berlin
image: docker.io/library/postgres:16.2-alpine
2019-08-20 19:37:45 +00:00
ports:
- 5432:5432
2019-08-20 19:37:45 +00:00
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro