Install Jellyfin with Podman

Podman compose file

# ~/containers/jellyfin/compose.yaml

services:
  jellyfin:
    image: docker.io/jellyfin/jellyfin:10.10.7
    container_name: jellyfin
    hostname: jellyfin
    user: "1000:1000"
    ports:
      - "8096:8096"
    volumes:
      - /data/jellyfin/config:/config
      - /data/jellyfin/media:/media:ro
      - /data/jellyfin/cache:/cache
    networks:
      - jellyfin
    restart: unless-stopped
networks:
  jellyfin:
    driver: bridge
podman-compose up -d