Skip to content

Commit

Permalink
Configure docker-compose using lightweight aria2 and httpd images for…
Browse files Browse the repository at this point in the history
… local use
  • Loading branch information
Thuan Nguyen committed Aug 13, 2016
1 parent cfee235 commit d911037
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d911037

Please sign in to comment.