您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

docker-compose.yml 465B

12345678910111213141516171819202122
  1. version: '3'
  2. services:
  3. nginx:
  4. build:
  5. context: .
  6. dockerfile: ./nginx/Dockerfile
  7. image: proxy-nginx
  8. container_name: reverse-proxy
  9. ports:
  10. - 3000:3000
  11. - 80:80
  12. - 443:443
  13. restart: always
  14. volumes:
  15. - /opt/staging/siimee.git/frontend/dist:/home/siimee
  16. networks:
  17. - staging_network
  18. networks:
  19. staging_network:
  20. external: true