Karna@lemmy.ml to Linux@lemmy.ml · 6 days agoImmich 1.122 Brings HDR Video Support in the Mobile Applinuxiac.comexternal-linkmessage-square33fedilinkarrow-up1226arrow-down11cross-posted to: linux@lemmy.world
arrow-up1225arrow-down1external-linkImmich 1.122 Brings HDR Video Support in the Mobile Applinuxiac.comKarna@lemmy.ml to Linux@lemmy.ml · 6 days agomessage-square33fedilinkcross-posted to: linux@lemmy.world
minus-squareMangoPenguin@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up5·edit-25 days agoYup it should run fine since its a docker stack, synology supports docker.
minus-squareOmacitin@lemmy.worldlinkfedilinkarrow-up1·4 days agoI’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.
minus-squarepenquin@lemm.eelinkfedilinkarrow-up1arrow-down2·4 days agoMan, it’s a fucking bitch to set up. Holy shit 😂
minus-squareMangoPenguin@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up3·edit-24 days agoIt’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 and docker compose up -d
Yup it should run fine since its a docker stack, synology supports docker.
I’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.
Man, it’s a fucking bitch to set up. Holy shit 😂
It’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