-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
85 lines (78 loc) · 2.03 KB
/
docker-compose.debug.yml
File metadata and controls
85 lines (78 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3.8'
services:
jellyfin-jellynext-debug:
build:
context: .
dockerfile: Dockerfile.debug
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
# Enable debugging
- DOTNET_EnableDiagnostics=1
volumes:
# Mount the built plugin DLL
- ./Jellyfin.Plugin.JellyNext/bin/Debug/net9.0/Jellyfin.Plugin.JellyNext.dll:/config/plugins/JellyNext_1.0.0.0/Jellyfin.Plugin.JellyNext.dll:ro
- ./Jellyfin.Plugin.JellyNext/bin/Debug/net9.0/Jellyfin.Plugin.JellyNext.pdb:/config/plugins/JellyNext_1.0.0.0/Jellyfin.Plugin.JellyNext.pdb:ro
# Jellyfin data persistence (optional, comment out for clean start each time)
- ./jellyfin-config:/config
- jellyfin-cache:/cache
- ./../media_server/data/media/tv:/data
networks:
- jellynext_network
ports:
- "8097:8096" # HTTP Web UI
- "4024:4024" # Remote debugger port
restart: unless-stopped
radarr:
image: linuxserver/radarr:latest
container_name: radarr-debug
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- radarr-config:/config
- ./../media_server/data/media:/data
networks:
- jellynext_network
ports:
- "7878:7878"
restart: unless-stopped
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr-debug
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- sonarr-config:/config
- ./../media_server/data/media:/data
networks:
- jellynext_network
ports:
- "8989:8989"
restart: unless-stopped
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr-debug
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- jellyseerr-config:/app/config
networks:
- jellynext_network
ports:
- "5055:5055"
restart: unless-stopped
networks:
jellynext_network:
driver: bridge
volumes:
jellyfin-cache:
radarr-config:
sonarr-config:
jellyseerr-config: