Uploading Everything

Uploading Every Docker Compose YML file to the Repo
This commit is contained in:
2026-02-12 17:12:19 +02:00
commit fe628b774f
38 changed files with 1273 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
name: jellyseerr
services:
jellyseerr:
image: ghcr.io/fallenbagel/jellyseerr:latest
init: true
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=Africa/Tripoli
ports:
- 5055:5055
volumes:
- C:\Data\AppData\jellyseerr\config:/app/config
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
restart: unless-stopped