@@ -0,0 +1 @@
+https://github.com/silverwind/droppy
+db.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": {}
+}
@@ -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