Skip to content

ThorbenSchiller/xdcc-dl-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XDCC Docker

This repository provides a Docker image for the python command line tool https://github.com/namboy94/xdcc-dl.

The entrypoint of this image is the xdcc-dl command.

Example

You can use the following docker command:

docker run --rm -v "${pwd}/output:/output" -w /output ghcr.io/thorbenschiller/xdcc-dl-docker "/msg CR-HOLLAND|NEW xdcc send #3626"

Using a compose file:

version: '3'
services:
  codegen:
    image: ghcr.io/thorbenschiller/xdcc-dl-docker
    working_dir: /output
    volumes:
      - ./output:/output
    command: ["/msg CR-HOLLAND|NEW xdcc send #3626"]