25 lines
407 B
YAML
25 lines
407 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:16
|
|
environment:
|
|
POSTGRES_USER: identity
|
|
POSTGRES_PASSWORD: identity
|
|
POSTGRES_DB: identity_gateway
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
identity-gateway:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "4000:4000"
|
|
depends_on:
|
|
- postgres
|
|
|
|
volumes:
|
|
pgdata:
|