Skip to content

v0.6.0

Choose a tag to compare

@github-actions github-actions released this 05 Feb 12:46
· 44 commits to main since this release

Docker Image

Pull the image:

docker pull awkto/filedrop:0.6.0
# or
docker pull awkto/filedrop:latest

Run the container:

docker run -d -p 3000:3000 \
  -v $(pwd)/uploads:/app/uploads \
  awkto/filedrop:0.6.0

With custom port:

docker run -d -p 8080:8080 \
  -v $(pwd)/uploads:/app/uploads \
  -e PORT=8080 \
  awkto/filedrop:0.6.0

Using docker-compose:

# Download docker-compose.yml from this release
docker-compose up -d

Access the web interface at http://localhost:3000

Full Changelog: v0.5.0...v0.6.0