Whitelist-API/API/docker-compose.yml

14 lines
275 B
YAML
Raw Normal View History

2023-10-24 01:37:34 -05:00
version: '3.8'
services:
db:
image: postgres
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: example
volumes:
- ./docker-entrypoint-sql:/docker-entrypoint-initdb.d
- ./postgres-data:/var/lib/postgresql/data