Jellyfin

Jellyfin - Free Software Media System

8096
Default Port
1
Services
9.5/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init jellyfin

Template Overview

Everything you need to deploy Jellyfin with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Jellyfin
jellyfin/jellyfin:latest
Categories
Media
Security Features
SSL/HTTPS Support
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Jellyfin up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Jellyfin with:

Terminal
blastdock init jellyfin

Interactive mode:

Terminal
blastdock init jellyfin -i

What's Included

Jellyfin
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Jellyfin installation with these configuration options.

2
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 8096
Required: Yes

Https Port

HTTPS port

port
Default: 8920
Required: Yes

Docker Compose

Complete Docker Compose configuration for Jellyfin deployment.

1
Services
3
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  jellyfin:
    image: jellyfin/jellyfin:latest
    container_name: {{ project_name }}_jellyfin
    restart: unless-stopped
    ports:
      - "8096"
      - "8920"
    environment:
      0: PUID=1000
      1: PGID=1000
      2: TZ=Europe/London
    volumes:
      - /config
      - /cache
      - /media
    networks:
      - jellyfin_network

volumes:
  jellyfin_config:
    driver: local

  jellyfin_cache:
    driver: local

  jellyfin_media:
    driver: local

networks:
  jellyfin_network:
    driver: bridge