diff --git a/ruoyi-modules/Property/docker-compose.yml b/ruoyi-modules/Property/docker-compose.yml new file mode 100644 index 0000000..be2f90a --- /dev/null +++ b/ruoyi-modules/Property/docker-compose.yml @@ -0,0 +1,21 @@ +services: + ruoyi-system: +# image: ruoyi/Property:2.4.0 + build: + context: . + dockerfile: Dockerfile + container_name: Property + environment: + # 时区上海 + TZ: Asia/Shanghai + ports: + - "10001:10001" + volumes: + # 配置文件 + - /docker/Property/logs/:/ruoyi/Property/logs + # skywalking 探针 + - /docker/skywalking/agent/:/ruoyi/skywalking/agent + privileged: true + network_mode: "host" + +