← Todas las guías
Immich
A self-hosted photo and video backup solution that mirrors the Google Photos experience, with mobile apps that auto-upload your camera roll to your own server.
Esta guía se elaboró a partir de la documentación oficial de Immich, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
1Create a project directory
mkdir ./immich-app && cd ./immich-app2Download the official compose and env files
Immich publishes a ready-to-use docker-compose.yml and example .env with each release.
wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.ymlwget -O .env https://github.com/immich-app/immich/releases/latest/download/example.env3Configure the .env file
Edit UPLOAD_LOCATION to a path with enough disk space, set a non-default DB_PASSWORD (alphanumeric only), and set your TZ.
Requires Docker Engine v25+ from Docker's own repository, not your distro's package — and use `docker compose` (v2), not the old `docker-compose`.
4Start Immich
docker compose up -d5Create the admin account
Visit the web UI and complete the registration form — the first account created automatically becomes the administrator.
open http://<server-ip>:2283