This repository was archived by the owner on Mar 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Installation
zobe123 edited this page Apr 18, 2021
·
7 revisions
How to install docker:
- Open a terminal.
- First update your existing package list:
sudo apt update - Next, install a few prerequisite packages that allow apt to use packages over HTTPS:
sudo apt install apt-transport-https ca-certificates curl software-properties-common - Then add the GPG key for the official Docker repository to your system:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - Add the Docker repository to the APT sources
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" - Then update the package database with the Docker packages from the newly added repo:
sudo apt update - Finally, install the docker:
sudo apt install docker-ce - Docker should now be installed, the daemon and the process should be started at boot time. Check if it works:
sudo systemctl status docker
How to build from github:
- pull image
sudo docker build github.com/RandomNinjaAtk/docker-amd -t docker-amd:latest -f Dockerfile.amd64You’ll see Docker step through each instruction of Dockerfile, building up your image as it goes. If successful, the build process should end with a message Successfully tagged docker-amd:latest.
How to min. configure & start:
- example command:
sudo docker run -d --name=\'docker-amd\' -e \'LidarrUrl\'=\'http://192.168.10.10:8686' -e \'LidarrAPIkey\'=\'KEY\' -e \'ARL_TOKEN\'=\'KEY\' -e \'quality\'=\'320\' -v \'/media/downloads/completed/music/\':\'/downloads-amd\':\'rw\' \'docker-amd\'
How to update:
sudo docker stop docker-amdsudo docker rm docker-amdsudo docker build github.com/RandomNinjaAtk/docker-amd -t docker-amd:latest -f Dockerfile.amd64sudo docker run -d --name='docker-amd' -e 'LidarrUrl'='http://192.168.10.10:8686' -e 'LidarrAPIkey'='KEY' -e 'ARL_TOKEN'='KEY' -e 'quality'='320' -v '/media/downloads/completed/music/':'/downloads-amd':'rw' 'docker-amd'