Configure docker-compose using lightweight aria2 and httpd images for local use

This commit is contained in:
Thuan Nguyen 2016-08-13 20:47:45 +07:00
parent cfee235154
commit d91103787f

14
docker-compose.yml Normal file
View 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