Browse Source

added droppy

Toastie 4 years ago
parent
commit
974cf46a48
4 changed files with 43 additions and 0 deletions
  1. 1 0
      droppy/README.md
  2. 1 0
      droppy/data/config/.gitignore
  3. 27 0
      droppy/data/config/config.json
  4. 14 0
      droppy/docker-compose.yml

+ 1 - 0
droppy/README.md

@@ -0,0 +1 @@
+https://github.com/silverwind/droppy

+ 1 - 0
droppy/data/config/.gitignore

@@ -0,0 +1 @@
+db.json

+ 27 - 0
droppy/data/config/config.json

@@ -0,0 +1,27 @@
+{
+  "listeners": [
+    {
+      "host": [
+        "0.0.0.0",
+        "::"
+      ],
+      "port": 8989,
+      "protocol": "http"
+    }
+  ],
+  "public": true,
+  "timestamps": true,
+  "linkLength": 5,
+  "linkExtensions": false,
+  "logLevel": 2,
+  "maxFileSize": 0,
+  "updateInterval": 1000,
+  "pollingInterval": 0,
+  "keepAlive": 20000,
+  "allowFrame": false,
+  "readOnly": false,
+  "compression": true,
+  "ignorePatterns": [],
+  "watch": true,
+  "headers": {}
+}

+ 14 - 0
droppy/docker-compose.yml

@@ -0,0 +1,14 @@
+version: '2'
+services:
+  droppy:
+    container_name: droppy
+    image: silverwind/armhf-droppy
+    ports:
+      - '8989:8989'
+    volumes:
+      - ./data/config:/config
+      - ./data:/files
+    environment:
+      - uid:100
+      - gid:1000
+    restart: unless-stopped