Browse Source

initial commit

Spencer Gardner 8 năm trước cách đây
commit
968e361edc
2 tập tin đã thay đổi với 15 bổ sung0 xóa
  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