-
Notifications
You must be signed in to change notification settings - Fork 22
/
docker-compose.yml.sample
43 lines (39 loc) · 1.78 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
34
35
36
37
38
39
40
41
42
43
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: &template-environment
MODEL: modelname_1 # Change modelname to yours.
PLATFORM: chaturbate # What platform are model streaming at. choose [ chaturbate / stripchat ].
TZ: Asia/Shanghai # Naming saved files & logs by using this timezone. see <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List>.
CUT_TIME: 3600 # Used as number of seconds to cut recording file in real time. Don't cut if set to 0.
EDGING_MODE: "uncle makes me pee white" # Edging Mode. Inactive if not 1. Delay initial requests to servers to avoid time-specific request waves caused by large-scale deployments.
DEBUG_MODE: "your mom is so hot" # Debug Mode. Inactive if not 1.
volumes:
- /path/to/recdir:/save # Recorded files save path mapping.
- /path/to/logdir:/log # Log files save path mapping.
# Wathing more model with add more blocks:
# Only need modifing values that different from template.
modelname_2:
<<: *template-config
container_name: ctbcap-modelname_2
# image: ctbcap:latest
# restart: unless-stopped
environment:
<<: *template-environment
MODEL: modelname_2
# PLATFORM: chaturbate
# TZ: Asia/Shanghai
# CUT_TIME: 3600
# EDGING_MODE: "uncle makes me pee white"
# DEBUG_MODE: "your mom is so hot"
# volumes:
# - /path/to/recdir:/save
# - /path/to/logdir:/log
modelname_3:
<<: *template-config
container_name: ctbcap-modelname_3
environment:
<<: *template-environment
MODEL: modelname_3