Blame
|
1 | # Jellyfin |
||||||
|
2 | |||||||
| 3 | ## compose.yml |
|||||||
|
4 | ```yaml |
||||||
|
5 | --- |
||||||
|
6 | services: |
||||||
| 7 | jellyfin: |
|||||||
| 8 | image: jellyfin/jellyfin:latest |
|||||||
| 9 | container_name: jellyfin |
|||||||
| 10 | ports: |
|||||||
| 11 | - "8096:8096" |
|||||||
| 12 | volumes: |
|||||||
| 13 | - ./config:/config |
|||||||
| 14 | - ./cache:/cache |
|||||||
| 15 | - ./media:/media |
|||||||
| 16 | restart: 'unless-stopped' |
|||||||
| 17 | # Optional - hardware acceleration devices (uncomment if needed) |
|||||||
| 18 | # devices: |
|||||||
| 19 | # - /dev/dri/renderD128:/dev/dri/renderD128 |
|||||||
| 20 | # - /dev/dri/card0:/dev/dri/card0 |
|||||||
| 21 | ``` |
|||||||
