version: '3.8' services: db: image: postgres:15-alpine restart: always environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: calendar_db ports: - "5432:5432" volumes: - db:/var/lib/postgresql/data volumes: db: driver: local