1.3 KiB
1.3 KiB
title, description, published, date, tags, editor, dateCreated
| title | description | published | date | tags | editor | dateCreated |
|---|---|---|---|---|---|---|
| Immich | Immich open source photo manager | true | 2025-03-11T19:50:43.585Z | markdown | 2025-03-09T12:36:13.098Z |
Immich
Immich is an opeb source photo management tool which is like google photos.
Login
- email : lukas96.forsberg@gmail.com
- password : Cuernavaca0521
Setup
Install instructions taken from here using docker.
Fetch the docker compose file and the default .env file. The .env file can be edited for user preference.
wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
wget -O .env https://github.com/immich-app/immich/releases/latest/download/example.env
Edits
Changed the path for the postgres server in docker-compose.yaml
volumes:
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data:delegated
and
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload:delegated
Changed postgre db location due to it needs to be placed in a linux file system not exFAT, in .env
DB_DATA_LOCATION=/home/lukas/docker_volumes/immich/postgres
Run
Start the docker instance with
sudo docker compose up -d