v0.5.0
Docker Image
Pull the image:
docker pull awkto/filedrop:0.5.0
# or
docker pull awkto/filedrop:latestRun the container:
docker run -d -p 3000:3000 \
-v $(pwd)/uploads:/app/uploads \
awkto/filedrop:0.5.0With custom port:
docker run -d -p 8080:8080 \
-v $(pwd)/uploads:/app/uploads \
-e PORT=8080 \
awkto/filedrop:0.5.0Using docker-compose:
# Download docker-compose.yml from this release
docker-compose up -dAccess the web interface at http://localhost:3000
Full Changelog: https://github.com/awkto/filedrop/commits/v0.5.0