eisai/aria2

By eisai

Updated about 1 year ago

aria2 & AriaNG on Windows Container.

Image
Networking
0

194

eisai/aria2 repository overview

Only Windows build version 20348 or newer are supported (Win11, Server2022)
Windows images are huge, expect 5+ minutes for pull.

Preparation

Create downloads folder:

aria2
└───downloads

Run

docker run --rm -it -p 8080:80 -p 6800:6800 -v .\downloads:c:\downloads eisai/aria2
With Password
docker run --rm -it -p 8080:80 -p 6800:6800 -v .\downloads:c:\downloads -e RPC_PASS=<YOUR_PASS> eisai/aria2
Print Help
docker run --rm -it eisai/aria2 -h

Docker Compose

networks:
  aria2:

services:
  aria2:
    container_name: aria2
    image: eisai/aria2
    isolation: process
    networks:
      - aria2
    ports:
      - "8080:80"
      - "6800:6800"
    volumes:
      - '.\downloads:C:\downloads'

Web UI

http://localhost:8080

Reference

Github Repo
https://github.com/aria2/aria2
https://github.com/mayswind/AriaNg

This image
https://github.com/Eisaichen/aria2-win-docker

Install an ultralight docker engine on Windows
https://eisaichen.com/?p=76

Tag summary

Content type

Image

Digest

sha256:5e207c1c1

Size

2.1 GB

Last updated

about 1 year ago

docker pull eisai/aria2