Immich

Immich - Self-hosted photo and video backup solution

2283
Default Port
6
Services
28.5/20
Complexity
High
Memory Usage
Configuration

Installation Command

blastdock init immich

Template Overview

Everything you need to deploy Immich with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Immich-server
ghcr.io/immich-app/immich-server:latest
Immich-microservices
ghcr.io/immich-app/immich-server:latest
Immich-machine-learning
ghcr.io/immich-app/immich-machine-learning:latest
Immich-web
ghcr.io/immich-app/immich-web:latest
Redis
redis:6
Postgres
postgres:14
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: High, Memory: High , 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 Immich up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Immich with:

Terminal
blastdock init immich

Interactive mode:

Terminal
blastdock init immich -i

What's Included

Immich-server
Container service
Immich-microservices
Container service
Immich-machine-learning
Container service
Immich-web
Container service
Redis
Container service
Postgres
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 Immich installation with these configuration options.

4
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Web Port

Web interface port

port
Default: 2283
Required: Yes

Api Port

API port

port
Default: 2283
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Upload Location

Upload location

string
Default: ./library
Required: Yes

Docker Compose

Complete Docker Compose configuration for Immich deployment.

6
Services
3
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
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