16 lines
324 B
YAML
16 lines
324 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16
|
|
container_name: issue-hub-postgres
|
|
environment:
|
|
POSTGRES_DB: issue_hub
|
|
POSTGRES_USER: issue_hub
|
|
POSTGRES_PASSWORD: issue_hub
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- issue-hub-postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
issue-hub-postgres:
|