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