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

docker-compose.yml 363B

12345678910111213141516171819
  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. - "80:80"
  11. - "443:443"
  12. restart: always
  13. networks:
  14. - staging_network
  15. networks:
  16. staging_network:
  17. external: true