Immich 1.122 Brings HDR Video Support in the Mobile App
Immich 1.122 Brings HDR Video Support in the Mobile App
Immich 1.122, a self-hosted photo and video backup solution, introduces HDR video support, auto server URL switching, custom email templates, and more.
You're viewing a single thread.
Does it work with Synology NAS? Last time I checked it didn't. I'd love to use it.
3 0 ReplyYup it should run fine since its a docker stack, synology supports docker.
5 0 ReplyI'm running it on a DS918+ right now. I copied-pasted their docker-compose file and had it up in half an hour or so.
1 0 ReplyMan, it's a fucking bitch to set up. Holy shit 😂
1 2 ReplyIt's basically 5 steps listed here https://immich.app/docs/install/docker-compose
If you're new to docker it will seem like a lot, but they've taken care of most of the work for you already in the docker compose file.
mkdir immich && cd immich
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
nano .env
and change the upload location if needed (by default it will be in the 'immich' directory we're in) and the timezone.docker compose up -d
Now it's running on http://ip:2283
Then to upgrade later on switch to the 'immich' directory again, do a
docker compose pull
anddocker compose up -d
2 0 Reply