/ compose.yaml
compose.yaml
 1  services:
 2    5uhr:
 3      image: 5uhr
 4      build:
 5        context: .
 6        dockerfile: Dockerfile
 7      env_file:
 8        - .env.local
 9    postgres:
10      image: postgres
11      environment:
12        POSTGRES_DB: funfuhr
13        POSTGRES_USER: postgres
14        POSTGRES_PASSWORD: postgres
15      ports:
16        - 5432:5432