13 lines
242 B
YAML
13 lines
242 B
YAML
services:
|
|
mongo:
|
|
image: mongo:5
|
|
restart: unless-stopped
|
|
ports:
|
|
- "27017:27017"
|
|
# command:
|
|
# - '--config'
|
|
# - '/config/mongod-conf.yml'
|
|
volumes:
|
|
- ./data:/data/db
|
|
- ./shared:/shared
|