Advertisement
Guest User

Untitled

a guest
Oct 26th, 2018
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4.  
  5. mongo:
  6. image: 'bitnami/mongodb:latest'
  7. ports:
  8. - "27017:27017"
  9. environment:
  10. - MONGODB_ROOT_PASSWORD=password123
  11. - MONGODB_USERNAME=testuser
  12. - MONGODB_PASSWORD=password123
  13. - MONGODB_DATABASE=my_database
  14. mongo-express:
  15. image: mongo-express
  16. ports:
  17. - 8081:8081
  18. environment:
  19. - ME_CONFIG_MONGODB_ADMINUSERNAME=testuser
  20. - ME_CONFIG_MONGODB_ADMINPASSWORD=password123
  21. metabase:
  22. image: metabase/metabase
  23. ports:
  24. - 3000:3000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement