Simple temporary file and paste storage
PORT
- web server listening portSTORAGE_PATH
- path to file storage itself (usually something like/storage
for simple volume mapping)RETENTION_TIME
- retention time for files in millisecondsACCESS_CONFIG_PATH
- path to access config (for upload/download actions), example is available in the repoEXTERNAL_URL
- external DogBox url (optional)
services:
dogbox:
build: https://github.com/b4ck5p4c3/dogbox.git
restart: always
ports:
- 127.0.0.1:3000:3000
environment:
STORAGE_PATH: /storage
RETENTION_TIME: 600000
volumes:
- ./storage:/storage