You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
269 B
14 lines
269 B
services:
|
|
mongo-db:
|
|
image: mongo:latest
|
|
container_name: mongo-db
|
|
ports:
|
|
- "27017:27017"
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: toor
|
|
volumes:
|
|
- mongo-data:/data/db
|
|
|
|
volumes:
|
|
mongo-data:
|