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

docker-compose.yml 266B

12345678910111213
  1. version: '3'
  2. services:
  3. nginx:
  4. container_name: "nginx-proxy"
  5. build:
  6. context: .
  7. dockerfile: ./nginx/Dockerfile
  8. image: proxy-nginx
  9. ports:
  10. - "80:80"
  11. - "443:443"
  12. restart: always