Files
mongo/docker-compose.yaml
2025-10-14 11:49:19 +00:00

13 lines
304 B
YAML

services:
mongodb:
image: mongo:7.0
container_name: mongodb
restart: unless-stopped
ports:
- "27017:27017"
env_file:
- .env
command: ["--wiredTigerCacheSizeGB", "4"]
volumes:
- /home/aetos/mongo/data:/data/db
- /home/aetos/mongo/config:/data/configdb