-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yml
39 lines (35 loc) · 898 Bytes
/
docker-compose.yml
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
version: "3.8"
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
restart: unless-stopped
ports:
- "80:8096"
volumes:
- "jellyfin_config:/config"
- "./media:/media"
jellyfin_alexa_skill:
image: ghcr.io/infinityofspace/jellyfin_alexa_skill:latest
container_name: jellyfin-alexa-skill
restart: unless-stopped
depends_on:
- jellyfin
- skill_db
ports:
- "1456:1456"
volumes:
- "./skill.conf:/skill/config/skill.conf"
healthcheck:
test: ["CMD", "wget", "--spider", "--tries=1", "http://localhost:1456/healthy"]
skill_db:
image: postgres:14.2-alpine3.15
container_name: skill-db
restart: unless-stopped
volumes:
- "skill_db_data:/var/lib/postgresql/data"
volumes:
jellyfin_config:
name: jellyfin_config
skill_db_data:
name: skill_db_data