Fixed rss bug

This commit is contained in:
2025-09-08 07:17:42 +02:00
parent 69a61f7350
commit 13b4ebf63f

View File

@@ -16,6 +16,7 @@ services:
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
- ${TMP_HOST_DIR:-./tmp}:/tmpdl
- ${MODELS_HOST_DIR:-./models}:/root/.cache/huggingface
- ./app:/app
ports: ["8088:8080"]
depends_on: [podx-worker, meili, redis]
restart: unless-stopped
@@ -53,6 +54,7 @@ services:
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
- ${TMP_HOST_DIR:-./tmp}:/tmpdl
- ${MODELS_HOST_DIR:-./models}:/root/.cache/huggingface
- ./app:/app
depends_on: [meili, redis]
restart: unless-stopped
healthcheck:
@@ -86,6 +88,7 @@ services:
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
- ${TMP_HOST_DIR:-./tmp}:/tmpdl
- ${MODELS_HOST_DIR:-./models}:/root/.cache/huggingface
- ./app:/app
depends_on: [meili, redis]
restart: unless-stopped
healthcheck:
@@ -151,6 +154,7 @@ services:
volumes:
- ${LIBRARY_HOST_DIR:-./library}:/library
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
- ./app:/app
depends_on: [redis]
healthcheck:
test: ["CMD-SHELL", "exit 0"]
@@ -177,6 +181,7 @@ services:
volumes:
- ${LIBRARY_HOST_DIR:-./library}:/library
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
- ./app:/app
depends_on: [redis]
healthcheck:
test: ["CMD-SHELL", "python - <<'PY'\nimport os,sys; p=os.getenv('FEEDS_FILE',''); sys.exit(0 if (p and os.path.exists(p)) else 1)\nPY"]