13 lines
304 B
YAML
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 |