Guest User

Untitled

a guest
Oct 25th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. pgdb:
  5. image: postgres:9.6.6-alpine
  6. environment:
  7. POSTGRES_USER: user
  8. POSTGRES_PASSWORD: user_password
  9. ports:
  10. - "5432:5432"
  11. redis:
  12. image: redis:4
  13. ports:
  14. - "6379:6379"
  15. neo4j:
  16. image: neo4j:3.4
  17. environment:
  18. NEO4J_AUTH: none
  19. ports:
  20. - "7474:7474"
  21. - "7687:7687"
  22. mongodb:
  23. image: mongo:3.6
  24. ports:
  25. - "27017:27017"
  26. mysql:
  27. image: mysql:5.6
  28. command: --default-authentication-plugin=mysql_native_password
  29. restart: always
  30. environment:
  31. MYSQL_ROOT_PASSWORD: 1password
  32. MYSQL_USER: database_user
  33. MYSQL_PASSWORD: database_user_password
  34. MYSQL_DATABASE: mydb
  35. ports:
  36. - "3306:3306"
Add Comment
Please, Sign In to add comment