stack/deploy/egommerce-stack.dev.yml

22 lines
436 B
YAML
Raw Normal View History

2022-10-06 20:40:27 +02:00
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: ~