Sign inSign up

lepinkainen/docker-flexget

By lepinkainen

Updated over 5 years ago

Image
0

10K+

lepinkainen/docker-flexget repository overview

ci

Dockerized Flexget with Deluge

This requires that the network 'deluge' is created externally with docker network create deluge

Flexget / docker-compose.yml

version: '3'
services:
  flexget:
    container_name: flexget
    image: lepinkainen/docker-flexget
    volumes:
        - ./config/:/root/.config/flexget/
        - /mnt/torrents/:/torrents/
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Helsinki
    restart: unless-stopped
    networks:
      - deluge

networks:
  deluge:
    external: true

Deluge / docker-compose.yml

version: "3"
services:
  deluge:
    image: linuxserver/deluge
    container_name: deluge
    ports:
      - "8112:8112"
      - "58846:58846"
      - "58847:58847"
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Helsinki
      - UMASK_SET=022 #optional
      - DELUGE_LOGLEVEL=error #optional
    volumes:
      - ./config:/config
      - /mnt/torrents/:/downloads
    restart: unless-stopped
    networks:
      - deluge

networks:
  deluge:
    external: true

Tag summary

Content type

Image

Digest

Size

212.6 MB

Last updated

over 5 years ago

docker pull lepinkainen/docker-flexget