Immich - Self-hosted photo and video backup solution
Everything you need to deploy Immich 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 Immich up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Immich with:
blastdock init immich
Interactive mode:
blastdock init immich -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 Immich installation with these configuration options.
Web interface port
API port
Database password
Upload location
Complete Docker Compose configuration for Immich deployment.
version: '3.8'
services:
postgres:
image: postgres:14
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ db_password }}
1: POSTGRES_USER=immich
2: POSTGRES_DB=immich
volumes:
- /var/lib/postgresql/data
networks:
- immich_network
redis:
image: redis:6
container_name: {{ project_name }}_redis
restart: unless-stopped
networks:
- immich_network
immich-server:
image: ghcr.io/immich-app/immich-server:latest
container_name: {{ project_name }}_immich_server
restart: unless-stopped
depends_on:
- postgres
- redis
ports:
- "3001"
environment:
0: DB_HOSTNAME=postgres
1: DB_USERNAME=immich
2: DB_PASSWORD={{ db_password }}
3: DB_DATABASE_NAME=immich
4: REDIS_HOSTNAME=redis
volumes:
- {{ upload_location }}
networks:
- immich_network
immich-microservices:
image: ghcr.io/immich-app/immich-server:latest
container_name: {{ project_name }}_immich_microservices
restart: unless-stopped
depends_on:
- immich-server
environment:
0: DB_HOSTNAME=postgres
1: DB_USERNAME=immich
2: DB_PASSWORD={{ db_password }}
3: DB_DATABASE_NAME=immich
4: REDIS_HOSTNAME=redis
volumes:
- {{ upload_location }}
networks:
- immich_network
immich-machine-learning:
image: ghcr.io/immich-app/immich-machine-learning:latest
container_name: {{ project_name }}_immich_machine_learning
restart: unless-stopped
environment:
0: REDIS_HOSTNAME=redis
1: MACHINE_LEARNING_WORKERS=1
2: MACHINE_LEARNING_CACHE_FOLDER=/cache
volumes:
- /cache
networks:
- immich_network
immich-web:
image: ghcr.io/immich-app/immich-web:latest
container_name: {{ project_name }}_immich_web
restart: unless-stopped
ports:
- "3000"
environment:
- IMMICH_SERVER_URL=http: //immich-server:3001
networks:
- immich_network
volumes:
postgres_data:
driver: local
immich_uploads:
driver: local
immich_model_cache:
driver: local
networks:
immich_network:
driver: bridge