2020-08-14 12:41:35 +02:00
|
|
|
version: "3.8"
|
2015-07-03 15:22:03 +02:00
|
|
|
|
2020-08-14 12:41:35 +02:00
|
|
|
services:
|
|
|
|
|
|
|
|
aria2:
|
|
|
|
image: vimagick/aria2
|
|
|
|
ports:
|
|
|
|
- "6800:6800"
|
|
|
|
volumes:
|
2021-09-06 12:38:42 +02:00
|
|
|
- ./data/aria2.conf:/etc/aria2/aria2.conf
|
|
|
|
- ./data/disk:/data
|
2020-08-14 12:41:35 +02:00
|
|
|
environment:
|
|
|
|
- TOKEN=e6c3778f-6361-4ed0-b126-f2cf8fca06db
|
|
|
|
restart: unless-stopped
|
|
|
|
|
2021-09-06 12:38:42 +02:00
|
|
|
webui:
|
2020-08-14 12:41:35 +02:00
|
|
|
image: nginx:alpine
|
|
|
|
ports:
|
|
|
|
- "8080:80"
|
|
|
|
volumes:
|
2021-09-06 06:01:13 +02:00
|
|
|
- ./data/html:/usr/share/nginx/html
|
2021-09-06 12:38:42 +02:00
|
|
|
- ./data/default.conf:/etc/nginx/conf.d/default.conf
|
|
|
|
- ./data/disk:/data
|
2020-08-14 12:41:35 +02:00
|
|
|
restart: unless-stopped
|