Jellyfin - Free Software Media System
Everything you need to deploy Jellyfin with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Jellyfin up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Jellyfin with:
blastdock init jellyfin
Interactive mode:
blastdock init jellyfin -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Jellyfin installation with these configuration options.
HTTP port
HTTPS port
Complete Docker Compose configuration for Jellyfin deployment.
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