Guest User

Untitled

a guest
Dec 20th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. version: '3.1'
  2.  
  3. services:
  4.  
  5. web-server:
  6. image: jlennon91/php:1.0.7
  7. restart: always
  8. ports:
  9. - 8080:80
  10. volumes:
  11. - .:/var/www/html/app
  12. depends_on:
  13. - mongo
  14.  
  15. mongo:
  16. image: mongo
  17. restart: always
  18. expose:
  19. - 27017
  20. ports:
  21. - 27017:27017
  22. environment:
  23. MONGO_INITDB_ROOT_USERNAME: root
  24. MONGO_INITDB_ROOT_PASSWORD: root
  25.  
  26. mongo-express:
  27. image: mongo-express
  28. restart: always
  29. ports:
  30. - 8081:8081
  31. environment:
  32. ME_CONFIG_MONGODB_ADMINUSERNAME: root
  33. ME_CONFIG_MONGODB_ADMINPASSWORD: example
Add Comment
Please, Sign In to add comment