docker-compose.yml 531 B

12345678910111213141516171819202122
  1. version: "3.9"
  2. services:
  3. yys_tool:
  4. # restart: always
  5. container_name: yys_tool
  6. image: "node:18.15.0-slim"
  7. command: bash -c "npm --registry=https://registry.npmmirror.com install && npm run dev"
  8. working_dir: /var/local
  9. volumes:
  10. - ./:/var/local
  11. ports:
  12. - "8888:8888"
  13. environment:
  14. - TZ=Asia/Shanghai
  15. - MODE=dev
  16. # yys_tool_nginx:
  17. # restart: always
  18. # image: "nginx:1.23.3"
  19. # ports:
  20. # - "8889:80"
  21. # volumes:
  22. # - ./dist/:/usr/share/nginx/html/yys-tool