Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
1,178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. mongo-express:
  5. image: mongo-express
  6. ports:
  7. - 8080:8081
  8. environment:
  9. ME_CONFIG_BASICAUTH_USERNAME: user
  10. ME_CONFIG_BASICAUTH_PASSWORD: user
  11. ME_CONFIG_MONGODB_PORT: 27017
  12. ME_CONFIG_MONGODB_ADMINUSERNAME: root
  13. ME_CONFIG_MONGODB_ADMINPASSWORD: root
  14. depends_on:
  15. - mongo
  16.  
  17. mongo:
  18. image: mongo
  19. environment:
  20. MONGO_INITDB_ROOT_USERNAME: root
  21. MONGO_INITDB_ROOT_PASSWORD: root
  22. ports:
  23. - 27017:27017
  24. volumes:
  25. - ./data:/data/db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement