Spaces:
Running
Running
File size: 263 Bytes
149698e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_DB: icc_interac
POSTGRES_USER: icc
POSTGRES_PASSWORD: password
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- "5432:5432"
volumes:
pgdata:
|