Skip to content
This repository was archived by the owner on Mar 21, 2023. It is now read-only.

Installation

zobe123 edited this page Apr 18, 2021 · 7 revisions

Operating Systems:

Linux


Linux (Ubuntu 18.04 LTS)

How to install docker:

  1. Open a terminal.
  2. First update your existing package list: sudo apt update
  3. 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
  4. 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 -
  5. Add the Docker repository to the APT sources sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
  6. Then update the package database with the Docker packages from the newly added repo: sudo apt update
  7. Finally, install the docker: sudo apt install docker-ce
  8. 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:

  1. pull image sudo docker build github.com/RandomNinjaAtk/docker-amd -t docker-amd:latest -f Dockerfile.amd64 You’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:

  1. 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:

  1. sudo docker stop docker-amd
  2. sudo docker rm docker-amd
  3. sudo docker build github.com/RandomNinjaAtk/docker-amd -t docker-amd:latest -f Dockerfile.amd64
  4. 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'
Clone this wiki locally