1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/aria2/docker-compose.yml
2021-09-06 18:38:42 +08:00

25 lines
507 B
YAML

version: "3.8"
services:
aria2:
image: vimagick/aria2
ports:
- "6800:6800"
volumes:
- ./data/aria2.conf:/etc/aria2/aria2.conf
- ./data/disk:/data
environment:
- TOKEN=e6c3778f-6361-4ed0-b126-f2cf8fca06db
restart: unless-stopped
webui:
image: nginx:alpine
ports:
- "8080:80"
volumes:
- ./data/html:/usr/share/nginx/html
- ./data/default.conf:/etc/nginx/conf.d/default.conf
- ./data/disk:/data
restart: unless-stopped