forked from infinityofspace/jellyfin_alexa_skill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
35 lines (32 loc) · 864 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
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
ports:
- "1456:1456"
volumes:
- "skill_data:/skill/data"
- "./skill.conf:/skill/config/skill.conf"
environment:
- JELLYFIN_ALEXA_SKILL_CONFIG=/skill/config/skill.conf
- JELLYFIN_ALEXA_SKILL_DATA=/skill/data
healthcheck:
test: ["CMD", "wget", "--spider", "--tries=1", "http://localhost:1456/healthy"]
volumes:
jellyfin_config:
name: jellyfin_config
skill_data:
name: skill_data