-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
53 lines (51 loc) · 1.43 KB
/
compose.yaml
File metadata and controls
53 lines (51 loc) · 1.43 KB
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
44
45
46
47
48
49
50
51
52
53
services:
scmscx-db:
image: "registry.zxcv.io/postgres:${GIT_VERSION}"
network_mode: host
build:
context: postgres
environment:
POSTGRES_PASSWORD: anotverysecurepassword
bwrender:
image: "registry.zxcv.io/bwrender:${GIT_VERSION}-debug"
network_mode: host
volumes:
- /starcraft:/starcraft
- /tmp/bwrender-runtime:/run/user/0
environment:
LIBGL_ALWAYS_SOFTWARE: "1"
XDG_RUNTIME_DIR: /run/user/0
MESA_DEBUG: "1"
LIBGL_DEBUG: verbose
RUST_LOG: info
DB_HOST: localhost
DB_PORT: 5432
DB_USER: bounding.net
DB_DATABASE: bounding.net
DB_PASSWORD: anotverysecurepassword
GSFSFE_ENDPOINT: "http://127.0.0.1:42069"
SC_DATA_PATH: /starcraft
RENDER_SKIN: carbothd2
# RENDER_SKIN: remasteredhd
RENDER_BATCH_SIZE: 10
RENDER_POLL_INTERVAL_SECS: 30
RENDER_WEBP_QUALITY: 40
scmscx:
image: "registry.zxcv.io/scmscx.com:${GIT_VERSION}-debug"
network_mode: host
ports:
- "8080:8080"
volumes:
- /tmp/scmscx.com/pending:/app/pending
environment:
DEV_MODE: "true"
RUST_LOG: info,tarpc=warn
DB_HOST: localhost
DB_PORT: 5432
DB_USER: bounding.net
DB_DATABASE: bounding.net
DB_PASSWORD: anotverysecurepassword
BACKBLAZE_DISABLED: "true"
MIXPANEL_DISABLED: "true"
GSFSFE_ENDPOINT: "http://127.0.0.1:42069"
SCMSCX_RENDER: "true"