-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml.sample
33 lines (28 loc) · 1.14 KB
/
docker-compose.yml.sample
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
services:
modelname_1: &template-config
container_name: ctbcap-modelname_1 # Change modelname to yours.
image: ctbcap:latest # Image used by the containers. No need to change if you follow the README.md to set up.
restart: unless-stopped
environment:
MODEL: modelname_1 # Change modelname to yours.
PLATFORM: chaturbate # What Platform are model streaming at. choose [ chaturbate / stripchat ].
TZ: Asia/Shanghai # Naming video file by using the time in this timezone. see <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List>.
DEBUG_MODE: "your mom is so hot" # Debug mod. inactive if not 1.
volumes:
- /path/to/viddir:/save # Video save path mapping.
- /path/to/logdir:/log # Log save path mapping.
# Wathing more model with add more blocks:
modelname_2:
<<: *template-config
container_name: ctbcap-modelname_2
environment:
MODEL: modelname_2
PLATFORM: chaturbate
TZ: Asia/Shanghai
modelname_3:
<<: *template-config
container_name: ctbcap-modelname_3
environment:
MODEL: modelname_3
PLATFORM: chaturbate
TZ: Asia/Shanghai