Guest User

Untitled

a guest
Jun 12th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. version: '2'
  2. services:
  3. mongo:
  4. image: mongo
  5. restart: always
  6. environment:
  7. MONGO_INITDB_ROOT_USERNAME: root
  8. MONGO_INITDB_ROOT_PASSWORD: root
  9. volumes:
  10. - ./mongo_db:/data/db
  11. mongo-express:
  12. image: mongo-express
  13. restart: always
  14. ports:
  15. - 8081:8081
  16. environment:
  17. ME_CONFIG_MONGODB_ADMINUSERNAME: root
  18. ME_CONFIG_MONGODB_ADMINPASSWORD: root
Add Comment
Please, Sign In to add comment