rave/docker-compose.yml
2023-10-10 21:25:02 +03:00

14 lines
277 B
YAML

version: '3'
services:
dev-db:
image: postgres:15
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 12345:5432
volumes:
- ./.rave-dev-db:/var/lib/postgresql/data