Skip to content

Commit ca019ea

Browse files
authoredFeb 17, 2025
Create docker-compose.yml
1 parent fb0111b commit ca019ea

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎docker-compose.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: '3.8'
2+
3+
services:
4+
streamshield-proxy:
5+
image: ppyycc/streamshield-proxy:latest
6+
container_name: streamshield-proxy
7+
restart: always
8+
ports:
9+
- "${PROXY_PORT}:4994"
10+
volumes:
11+
- ${PROXY_CONFIG_PATH}:/app/config
12+
environment:
13+
- DEBUG=true
14+
- VPS_HOST=${PROXY_HOST}
15+
- SECURITY_TOKEN=${PROXY_TOKEN}
16+
logging:
17+
driver: json-file
18+
options:
19+
max-size: "10m"
20+
max-file: "5"
21+
22+
doube-ofiii:
23+
image: doubebly/doube-ofiii:1.0.5
24+
container_name: doube-ofiii
25+
restart: always
26+
ports:
27+
- "${OFIII_PORT}:5000"
28+
volumes:
29+
- ${OFIII_CONFIG_PATH}:/app/config

0 commit comments

Comments
 (0)
Please sign in to comment.