Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
87
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. postgres:
  5. image: postgres:9.5
  6. container_name: db_postgres
  7. restart: always
  8. ports:
  9. - 5432:5432
  10. environment:
  11. - TZ=Europe/Berlin
  12. - POSTGRES_USER=postgres
  13. - POSTGRES_DB=bosh
  14. mysql:
  15. image: mysql
  16. container_name: mysql
  17. restart: always
  18. ports:
  19. - 3306:3306
  20. environment:
  21. - TZ=Europe/Berlin
  22. - MYSQL_ROOT_PASSWORD=password
  23. - MYSQL_DB=bosh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement