docker-compose.yml 383 B

123456789101112131415161718192021
  1. version: '3.5'
  2. services:
  3. jetlinks_build:
  4. build: ../
  5. container_name: 'jetlinks_build'
  6. volumes:
  7. - dist:/usr/src/app/dist
  8. jetlinks_web:
  9. image: nginx
  10. ports:
  11. - 80:80
  12. container_name: 'jetlinks_web'
  13. restart: unless-stopped
  14. volumes:
  15. - dist:/usr/share/nginx/html:ro
  16. - ./nginx.conf:/etc/nginx/conf.d/default.conf
  17. volumes:
  18. dist: