infra/databases/docker-compose.yml
2026-03-26 18:07:39 -04:00

26 lines
490 B
YAML

version: '3.8'
services:
postgres:
image: postgres:17
container_name: mystic-postgres
restart: unless-stopped
environment:
POSTGRES_PASSWORD: Nyhjew-didvot-zypsa7
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "5432:5432"
mongodb:
image: mongo:latest
container_name: mystic-mongo
restart: unless-stopped
volumes:
- mongo_data:/data/db
ports:
- "27017:27017"
volumes:
postgres_data:
mongo_data: