Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. version: '2'
  2. services:
  3.  
  4. # The Application
  5. app:
  6. build:
  7. context: ./
  8. dockerfile: app.dockerfile
  9. working_dir: /var/www
  10. volumes:
  11. - ./:/var/www
  12. environment:
  13. - "DB_PORT=32770"
  14. - "DB_HOST=95.213.184.222"
  15. web:
  16. build:
  17. context: ./
  18. dockerfile: web.dockerfile
  19. working_dir: /var/www
  20. volumes_from:
  21. - app
  22. ports:
  23. - 1488:80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement