Add Docker Compose configuration for Threadfin service with environment variables

This commit is contained in:
Nikholas Pcenicni
2026-04-26 11:09:34 -04:00
parent aeffc7d6dd
commit 7ad6679c3c
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
PORT=34400
PUID=1000
PGID=1000
TZ=Etc/UTC

View 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: