-
-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathdocker-compose.test.yml
More file actions
64 lines (60 loc) · 1.68 KB
/
docker-compose.test.yml
File metadata and controls
64 lines (60 loc) · 1.68 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
version: '3.8'
services:
# Jellyfin test server - Fresh container, configured via API
jellyfin-test:
image: jellyfin/jellyfin:latest
container_name: wizarr-jellyfin-test
ports:
- "8096:8096"
environment:
- JELLYFIN_PublishedServerUrl=http://localhost:8096
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8096/System/Info/Public"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
# Plex test server - Fresh container, configured via API
plex-test:
image: plexinc/pms-docker:latest
container_name: wizarr-plex-test
ports:
- "32400:32400"
environment:
- PLEX_UID=1000
- PLEX_GID=1000
- TZ=UTC
# Will be claimed via API using test account
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:32400/identity"]
interval: 30s
timeout: 10s
retries: 5
start_period: 120s
# Emby test server - Fresh container, configured via API
emby-test:
image: emby/embyserver:latest
container_name: wizarr-emby-test
ports:
- "8097:8096"
environment:
- UID=1000
- GID=1000
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8096/emby/System/Info/Public"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
# AudiobookShelf test server - Fresh container, configured via API
audiobookshelf-test:
image: ghcr.io/advplyr/audiobookshelf:latest
container_name: wizarr-abs-test
ports:
- "13378:80"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/healthcheck"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s