Skip to content

Instantly share code, notes, and snippets.

@cobrce
Created February 3, 2021 00:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cobrce/67d30bac752f6e3d1d52d959b5739f23 to your computer and use it in GitHub Desktop.
install docker + jackett image on raspberry pi
curl -sSL https://get.docker.com | sh
sudo pip3 install docker-compose
cat << EOF > docker-compose.yml
---
version: "2"
services:
jackett:
image: linuxserver/jackett
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- /home/docker/jackett/config:/config
- /home/docker/jackett/downloads:/downloads
ports:
- 9117:9117
restart: unless-stopped
EOF
sudo chown pi:pi docker-compose.yml
sudo docker-compose up -d jackett
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment