-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
41 lines (41 loc) · 1.21 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3"
networks:
default:
driver: bridge
services:
api:
# image: jinzhijie/skinrendermc-api:latest
# image: registry.cn-shanghai.aliyuncs.com/serinanya/skinrendermc-api:latest
image: ccr.ccs.tencentyun.com/serinanya/skinrendermc-api:latest
ports:
- 57680:57680
environment:
- browserWSEndpoint=ws://chrome:3000
- backendSkinView3D=http://skinview3d/
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:57680/"]
interval: 1m30s
timeout: 30s
retries: 1
start_period: 30s
restart: unless-stopped
networks:
- default
chrome:
# image: browserless/chrome:latest
# image: registry.cn-shanghai.aliyuncs.com/serinanya/browserless:latest
image: ccr.ccs.tencentyun.com/serinanya/browserless:latest
environment:
- PREBOOT_CHROME="true"
- KEEP_ALIVE="true"
- ENABLE_CORS="true"
restart: always
networks:
- default
skinview3d:
# image: jinzhijie/skinrendermc-skinview3d:latest
# image: registry.cn-shanghai.aliyuncs.com/serinanya/skinrendermc-skinview3d:latest
image: ccr.ccs.tencentyun.com/serinanya/skinrendermc-skinview3d:latest
restart: always
networks:
- default