Skip to content

Commit

Permalink
Added Docker Compose File
Browse files Browse the repository at this point in the history
  • Loading branch information
nhalstead authored and debloper committed Dec 3, 2024
1 parent 1b55549 commit 27f98b1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

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
ports:
- 8088:80 # Web UI
- 1935:1935 # Stream Port
restart: unless-stopped

0 comments on commit 27f98b1

Please sign in to comment.