Advertisement
Guest User

Untitled

a guest
Dec 21st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. data_postgres:
  2. image: busybox
  3. volumes:
  4. - /var/lib/mysql
  5.  
  6. data_erp:
  7. image: busybox
  8. volumes:
  9. - /tmp/
  10.  
  11. erp:
  12. image: tomas487/erp:0.1
  13. volumes_from:
  14. - data_erp
  15. links:
  16. - postgres
  17. ports:
  18. - "8080:8080"
  19. environment:
  20. - DATABASE_HOST=127.0.0.1:5432
  21. - DATABASE_NAME=postgres
  22. postgres:
  23. image: postgres:10.6
  24. volumes_from:
  25. - data_postgres
  26. environment:
  27. - POSTGRES_USERNAME=postgres
  28. - POSTGRES_PASSWORD=postgres
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement