Install Immich server foto dengan docker

From Dboswiki
Revision as of 22:27, 19 May 2025 by Smpdbos (talk | contribs)
Jump to navigation Jump to search

Step -1 Installing Docker

sudo apt update

sudo apt install apt-transport-https ca-certificates curl software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/nullsudo apt updateapt-cache policy docker-ceOutput yang diharapkan dengan perintah di atas :

docker-ce:

  Installed: (none)

  Candidate: 5:20.10.14~3-0~ubuntu-jammy

  Version table:

     5:20.10.14~3-0~ubuntu-jammy 500

        500 https://download.docker.com/linux/ubuntu jammy/stable amd64 Packages

     5:20.10.13~3-0~ubuntu-jammy 500

        500 https://download.docker.com/linux/ubuntu jammy/stable amd64 Packages


Finally, install Docker:

sudo apt install docker-cesudo systemctl status docker


Step-2 Installing Immich

Creatte Directory for Immich

mkdir ./immich-appcd ./immich-app