Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.38 KB | None | 0 0
  1. version: '3.7'
  2. services:
  3.     mongodb_container:
  4.         image: mongo:latest
  5.         environment:
  6.             MONGO_INITDB_ROOT_USERNAME: root
  7.             MONGO_INITDB_ROOT_PASSWORD: rootpassword
  8.             MONGO_INITDB_DATABASE: test
  9.         ports:
  10.            - 27017:27017
  11.         volumes:
  12.            - mongodb_data_container:/data/db
  13.  
  14. volumes:
  15.    mongodb_data_container:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement