2023-02-28 18:18:29 +00:00
|
|
|
services:
|
2024-11-04 12:08:51 +00:00
|
|
|
|
2023-02-28 18:18:29 +00:00
|
|
|
jellyfin:
|
2023-03-01 10:07:55 +00:00
|
|
|
image: jellyfin/jellyfin:latest
|
2023-02-28 18:18:29 +00:00
|
|
|
container_name: jellyfin
|
|
|
|
volumes:
|
2023-03-01 10:09:03 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config
|
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache
|
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media
|
2023-03-01 10:07:55 +00:00
|
|
|
restart: unless-stopped
|
2024-11-04 12:08:51 +00:00
|
|
|
ports:
|
|
|
|
- 8096:8096/tcp
|
|
|
|
expose:
|
|
|
|
- 8096
|
2023-03-01 10:07:55 +00:00
|
|
|
#environment:
|
|
|
|
# - JELLYFIN_PublishedServerUrl=http://example.com # Optional - alternative address used for autodiscovery
|
|
|
|
#extra_hosts:
|
|
|
|
# - "host.docker.internal:host-gateway" # Optional - may be necessary for docker healthcheck to pass if running in host network mode
|