docker-compose-dev.yaml 390 B

123456789101112131415
  1. ## 以nginx为基础镜像,方便调试,或者直接使用nginx容器
  2. version: "3"
  3. services:
  4. nginx-with-ui:
  5. image: registry.cn-hangzhou.aliyuncs.com/tuon-pub/nginx-with-ui
  6. restart: always
  7. container_name: nginx-with-ui
  8. ports:
  9. - 38080:38080
  10. # network_mode: host
  11. volumes:
  12. - ./docker/data:/app/data
  13. - ./docker/data/conf:/app/conf