Home Login

Day 6: Media Server with JellyFin on Raspberry Pi

Start server

MEDIA_FILES=/ssd/media
MEDIA_CONFIG=/ssd/media_config
cat < docker-compose.yaml <<EOF
services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    network_mode: 'host'
    volumes:
      - ${MEDIA_CONFIG}/config:/config
      - ${MEDIA_CONFIG}/cache:/cache
      - ${MEDIA_FILES}:/media:ro
    restart: 'unless-stopped'
EOF
docker compose up -d
The job is running, now you can login from the browser, http://raspberrypi.local:8096

iphone client

The iphone client can be downloaded from App Store with name JellyFin Next: Day 7