Add Docker Compose configuration for Threadfin service with environment variables
This commit is contained in:
4
komodo/media-server/threadfin/.env.sample
Normal file
4
komodo/media-server/threadfin/.env.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
PORT=34400
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=Etc/UTC
|
||||
17
komodo/media-server/threadfin/compose.yaml
Normal file
17
komodo/media-server/threadfin/compose.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
threadfin:
|
||||
image: fyb3roptik/threadfin
|
||||
container_name: threadfin
|
||||
ports:
|
||||
- ${PORT:-34400}:34400
|
||||
environment:
|
||||
- PUID=${PUID:-1000}
|
||||
- PGID=${PGID:-1000}
|
||||
- TZ=${TZ:-Etc/UTC}
|
||||
volumes:
|
||||
- data-conf:/home/threadfin/conf
|
||||
- data-temp:/tmp/threadfin:rw
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
data-conf:
|
||||
data-temp:
|
||||
Reference in New Issue
Block a user