version: "3.9" services: postgres_svc: ports: - '5432:5432' volumes: - postgres_data:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=12345678 identity_svc: environment: - DATABASE_URL=postgres://postgres:12345678@postgres_svc:5432/egommerce basket_svc: environment: - DATABASE_URL=postgres://postgres:12345678@postgres_svc:5432/egommerce volumes: postgres_data: ~