Install Immich server foto dengan docker: Difference between revisions
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
<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 | ||
<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 | <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<code>sudo apt update<code>apt-cache policy docker-ceOutput yang diharapkan dengan perintah di atas : | ||
<code>sudo apt update | |||
<code>apt-cache policy docker- | |||
docker-ce: | docker-ce: | ||
| Line 34: | Line 28: | ||
Finally, install Docker: | Finally, install Docker: | ||
<code>sudo apt install docker-ce | <code>sudo apt install docker-ce<code>sudo systemctl status docker | ||
<code>sudo systemctl status docker | |||
| Line 43: | Line 35: | ||
Creatte Directory for Immich | Creatte Directory for Immich | ||
<code>mkdir ./immich-app | <code>mkdir ./immich-app<code>cd ./immich-app | ||
<code>cd ./immich-app | |||
Revision as of 22:27, 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/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