Install Immich server foto dengan docker: Difference between revisions

From Dboswiki
Jump to navigation Jump to search
immich
 
No edit summary
Line 5: Line 5:
<code>sudo apt install apt-transport-https ca-certificates curl software-properties-common</code>
<code>sudo apt install apt-transport-https ca-certificates curl software-properties-common</code>


curl -fsSL <nowiki>https://download.docker.com/linux/ubuntu/gpg</nowiki> | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
<code>curl -fsSL <nowiki>https://download.docker.com/linux/ubuntu/gpg</nowiki> | 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] <nowiki>https://download.docker.com/linux/ubuntu</nowiki> $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
<code>echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] <nowiki>https://download.docker.com/linux/ubuntu</nowiki> $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null


sudo apt update
<code>sudo apt update


apt-cache policy docker-ce
<code>apt-cache policy docker-ce


Output yang diharapkan dengan perintah di atas :
Output yang diharapkan dengan perintah di atas :
Line 34: Line 34:
Finally, install Docker:
Finally, install Docker:


sudo apt install docker-ce
<code>sudo apt install docker-ce


sudo systemctl status docker
<code>sudo systemctl status docker




Line 43: Line 43:
Creatte Directory for Immich
Creatte Directory for Immich


mkdir ./immich-app
<code>mkdir ./immich-app


cd ./immich-app
<code>cd ./immich-app

Revision as of 22:25, 19 May 2025

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/null

sudo apt update

apt-cache policy docker-ce

Output 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-ce

sudo systemctl status docker


Step-2 Installing Immich

Creatte Directory for Immich

mkdir ./immich-app

cd ./immich-app