Guest User

Untitled

a guest
Dec 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. version: '3'
  2. services:
  3. appserver:
  4. image: nginx
  5. ports:
  6. - 8080:80
  7. volumes:
  8. - ./app:/usr/share/nginx/html
  9. - ./vhost.conf:/etc/nginx/conf.d/default.conf
  10. app:
  11. image: php:7.2-fpm
  12. volumes:
  13. - ./app:/usr/share/nginx/html
  14. admin:
  15. image: node:10-alpine
  16. volumes:
  17. - ./admin:/usr/src/app
  18. ports:
  19. - 8081:8080
  20. working_dir: /usr/src/app
  21. command: npm run serve
Add Comment
Please, Sign In to add comment