docker-compose.yml 277 B

123456789101112
  1. version: '3'
  2. services:
  3. client:
  4. image: nginx:alpine
  5. restart: always
  6. volumes:
  7. - ./dist:/usr/share/nginx/html
  8. - ./nginx/nginx.conf:/etc/nginx/nginx.conf
  9. - ./nginx/simple-kalorie-tracker:/etc/nginx/conf.d/default.conf
  10. ports:
  11. - '40180:80'