Hello everyone,
I have been trying to follow along this repo but I have been encountering a wall when it came to setting up Jackett.
My issue is fairly simple, I am trying to learn about docker and the jackett image works fine when I run a simple docker-run -d --name=jackett
.
Unfortunately I am trying to package everything in one simple .yml file but when I do so I cannot connect to jackett anymore
The curl response when I try to reach either localhost;9117 or 127.0.0.1:9117 is
Failed to connect to 127.0.0.1 port 9117: Connection refused
I have looked up my proxy and it should not be an issue (I am working on macOS Catalina).
Thanks in advance for your help.
version: "3.7"
services:
deluge:
container_name: deluge
image: linuxserver/deluge:latest
restart: unless-stopped
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- ${ROOT}/downloads:/downloads # downloads folder
- ${ROOT}/config/deluge:/config # config files
jackett:
container_name: jackett
image: linuxserver/jackett:latest
restart: unless-stopped
network_mode: host
environment:
- PUID=${PUID} # default user id, defined in .env
- PGID=${PGID} # default group id, defined in .env
- TZ=${TZ} # timezone, defined in .env
volumes:
- /etc/localtime:/etc/localtime:ro
- ${ROOT}/downloads/Torrents/Files:/Downloads # place where to put .torrent files for manual download
- ${ROOT}/config/jackett:/config # config files
ports:
- 9117:9117