Configure docker-compose using lightweight aria2 and httpd images for local use
This commit is contained in:
parent
cfee235154
commit
d91103787f
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
aria2:
|
||||
image: ndthuan/aria2-alpine
|
||||
volumes:
|
||||
- $HOME/Downloads:/downloads
|
||||
ports:
|
||||
- "6800:6800"
|
||||
|
||||
httpd:
|
||||
image: busybox
|
||||
volumes:
|
||||
- ./:/usr/html
|
||||
ports:
|
||||
- "80:80"
|
||||
command: /bin/busybox httpd -f -p 80 -h /usr/html
|
Loading…
Reference in New Issue
Block a user