소스 검색

initial commit

Spencer Gardner 8 년 전
커밋
968e361edc
2개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      Dockerfile
  2. 4 0
      deluge-web_init.sh

+ 11 - 0
Dockerfile

@@ -0,0 +1,11 @@
+from debian
+
+EXPOSE 80
+
+
+RUN apt-get update && apt-get install -y deluge-web
+
+ADD deluge-web_init.sh /sbin/deluge-web_init.sh
+RUN chmod +x /sbin/deluge-web_init.sh
+
+CMD /sbin/deluge-web_init.sh

+ 4 - 0
deluge-web_init.sh

@@ -0,0 +1,4 @@
+#!/bin/sh
+
+
+deluge-web -c /config -p 80