-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcompose.yaml
More file actions
22 lines (21 loc) · 578 Bytes
/
compose.yaml
File metadata and controls
22 lines (21 loc) · 578 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
xplex:
image: ghcr.io/debloper/xplex:latest
container_name: xplex
#
# Create a file named ingests.json in ./data
# xplex reads and writes data to this file.
#
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- type: bind
source: ./data/ingests.json
target: /xplex/ingests.json
- type: bind
source: ./data/xplex.conf
target: /usr/local/nginx/conf/xplex.conf
ports:
- 8088:80 # Web UI
- 1935:1935 # Stream Port
restart: unless-stopped