| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- version : '2.2'
- services:
- ruoyi-gateway:
- container_name: ruoyi-gateway
- build:
- context: ./ruoyi/gateway
- dockerfile: dockerfile
- ports:
- - "38080:8080"
- ruoyi-auth:
- container_name: ruoyi-auth
- build:
- context: ./ruoyi/auth
- dockerfile: dockerfile
- ports:
- - "39200:9200"
- ruoyi-modules-system:
- container_name: ruoyi-modules-system
- build:
- context: ./ruoyi/modules/system
- dockerfile: dockerfile
- ports:
- - "39201:9201"
- ruoyi-modules-gen:
- container_name: ruoyi-modules-gen
- build:
- context: ./ruoyi/modules/gen
- dockerfile: dockerfile
- ports:
- - "39202:9202"
- ruoyi-modules-job:
- container_name: ruoyi-modules-job
- build:
- context: ./ruoyi/modules/job
- dockerfile: dockerfile
- ports:
- - "39203:9203"
- ruoyi-modules-file:
- container_name: ruoyi-modules-file
- build:
- context: ./ruoyi/modules/file
- dockerfile: dockerfile
- ports:
- - "39300:9300"
- volumes:
- - ./ruoyi/uploadPath:/home/ruoyi/uploadPath
- ruoyi-visual-monitor:
- container_name: ruoyi-visual-monitor
- build:
- context: ./ruoyi/visual/monitor
- dockerfile: dockerfile
- ports:
- - "39100:9100"
|