16 lines
259 B
YAML
16 lines
259 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
mongo:
|
|
image: mongo:4.4
|
|
restart: unless-stopped
|
|
ports:
|
|
- "27017:27017"
|
|
# command:
|
|
# - '--config'
|
|
# - '/config/mongod-conf.yml'
|
|
volumes:
|
|
- ./data:/data/db
|
|
- ./shared:/shared
|
|
|