|
|
Line 1: |
Line 1: |
| '''Step -1 Installing Docker'''
| |
|
| |
|
| <code>sudo apt update</code>
| |
|
| |
| <code>sudo apt install apt-transport-https ca-certificates curl software-properties-common</code>
| |
|
| |
| <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>sudo apt update<code>apt-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 <nowiki>https://download.docker.com/linux/ubuntu</nowiki> jammy/stable amd64 Packages
| |
|
| |
| 5:20.10.13~3-0~ubuntu-jammy 500
| |
|
| |
| 500 <nowiki>https://download.docker.com/linux/ubuntu</nowiki> jammy/stable amd64 Packages
| |
|
| |
|
| |
| Finally, install Docker:
| |
|
| |
| <code>sudo apt install docker-ce<code>sudo systemctl status docker
| |
|
| |
|
| |
| Step-2 Installing Immich
| |
|
| |
| Creatte Directory for Immich
| |
|
| |
| <code>mkdir ./immich-app<code>cd ./immich-app
| |