30 lines
736 B
YAML
30 lines
736 B
YAML
services:
|
|
manager:
|
|
image: harbor.devops.u.niu/bi/manager:1.0.0
|
|
restart: always
|
|
volumes:
|
|
- ./logs:/data/logs
|
|
- ./config:/data/config
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone
|
|
ports:
|
|
- 11090:8090
|
|
reporter:
|
|
image: harbor.devops.u.niu/bi/reporter:1.0.0
|
|
restart: always
|
|
volumes:
|
|
- ./logs:/data/logs
|
|
- ./config:/data/config
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone
|
|
ports:
|
|
- 11091:8091
|
|
|
|
sinker:
|
|
image: harbor.devops.u.niu/bi/sinker:1.0.0
|
|
restart: always
|
|
volumes:
|
|
- ./logs:/data/logs
|
|
- ./config:/data/config
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone |