Guest User

Untitled

a guest
Jan 5th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4. mongo:
  5. image: mongo
  6. restart: always
  7. container_name: mongo
  8. environment:
  9. MONGO_INITDB_ROOT_USERNAME: root
  10. MONGO_INITDB_ROOT_PASSWORD: passwd
  11. ports:
  12. - "27017:27017"
  13. volumes:
  14. - ./databases:/data/db
  15.  
  16. mongo-express:
  17. image: mongo-express
  18. restart: always
  19. container_name: mongo-express
  20. ports:
  21. - 8081:8081
  22. environment:
  23. ME_CONFIG_MONGODB_ADMINUSERNAME: root
  24. ME_CONFIG_MONGODB_ADMINPASSWORD: passwd
Add Comment
Please, Sign In to add comment