https://github.com/skaronator/docker-gallery-dl
Simple, lightweight and secure container image for gallery-dl
https://github.com/skaronator/docker-gallery-dl
Last synced: 3 months ago
JSON representation
Simple, lightweight and secure container image for gallery-dl
- Host: GitHub
- URL: https://github.com/skaronator/docker-gallery-dl
- Owner: Skaronator
- License: gpl-3.0
- Created: 2023-08-01T18:11:49.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-04-10T18:04:52.000Z (4 months ago)
- Last Synced: 2026-04-24T16:54:13.712Z (3 months ago)
- Language: Dockerfile
- Homepage:
- Size: 229 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gallery-dl Docker Container Image
Command-line program to download image galleries and collections from several image hosting sites.
[https://github.com/mikf/gallery-dl](https://github.com/mikf/gallery-dl)
## Usage
The usage of this container image is pretty straightforward. It's basically just gallery-dl as a container image.
You need to mount `/data/gallery-dl` if you want to access the data on the host system.
```bash
docker run -v $PWD/data:/data/gallery-dl ghcr.io/skaronator/gallery-dl https://gfycat.com/admirablefearfulkangaroo-rick-astley
```
### Config file
You can also mount a gallery-dl config file in the container.
```bash
docker run -v $PWD/config.json:/gallery-dl/config.json:ro ghcr.io/skaronator/gallery-dl
```
Check the [official documentation to see](https://github.com/mikf/gallery-dl/#locations) at which locations a configuration file is expected.
```bash
docker run -v $PWD/config.json:/config.json:ro ghcr.io/skaronator/gallery-dl --config /config.json https://gfycat.com/admirablefearfulkangaroo-rick-astley
```
You can also define your own location with the [command options](https://github.com/mikf/gallery-dl/blob/master/docs/options.md#configuration-options).