version: "3.9" services: db: image: postgres:15 environment: - DB_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB} env_file: - .env volumes: - /srv/data/db/services/authentication:/var/lib/postgresql/data migration: build: database-migration image: python:3.11-slim environment: - DB_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB} env_file: - .env depends_on: - db command: python3 db_migration_test1.py