-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (37 loc) · 786 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (37 loc) · 786 Bytes
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"
services:
kodi:
image: ghcr.io/fightforlife/kodi:latest
ipc: host
environment:
- DISPLAY=:0
devices:
- /dev/snd:/dev/snd
- /dev/dri/card0:/dev/dri/card0
- /dev/dri/renderD128:/dev/dri/renderD128
group_add:
- audio
- video
- dialout
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- kodi:/home/kodi
hyperion:
image: ghcr.io/fightforlife/hyperion:latest
ipc: host
environment:
- DISPLAY=:0
ports:
- 8090:8090
devices:
- /dev/dri/card0:/dev/dri/card0
- /dev/dri/renderD128:/dev/dri/renderD128
group_add:
- video
- dialout
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- hyperion:/home/hyperion
volumes:
kodi:
hyperion: