4.3.40 release notes
- Update spring-boot up to 2.3.0.RELEASE version
- Update other latest versions
Java file server based on spring-boot with no memory, upload or download files size limitations
logback version -> 1.3.0-alpha4 is incompatible, use 1.2.3 instead
# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/docker-compose.yml
docker-compose up -d
# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
java -jar file-items-service-4.3.40.jar --spring.profiles.active=db-pg
# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar
java -jar file-server-4.3.40.jar --app.upload.path=./path/to/file-storage
# cleanup
docker-compose down -v
# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application.bash
# start
bash application.bash start ./path/to/file-storage
# stop
bash application.bash stop
# cleanup
bash application.bash clean ./path/to/file-storage
note: tested on osx with docker installed locally
binaries: wget
, docker-compose
, bash
and of course java
are required
@rem batch shell-script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application.cmd
@rem start
application.cmd start path\to\file-storage
@rem stop
application.cmd stop
@rem cleanup
application.cmd clean path\to\file-storage
note: tested on windows 10 with docker installed locally
binaries: which
, wget
, docker-compose
, taskkill
, mkdir
and of course java (binaries: java
and jps
) are required
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar
bash file-items-service-4.3.40.jar --spring.profiles.active=db-h2
bash file-server-4.3.40.jar --app.upload.path=./path/to/file-storage
# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application-h2.bash
# start
bash application-h2.bash start ./path/to/file-storage
# stop
bash application-h2.bash stop
# cleanup
bash application-h2.bash clean ./path/to/file-storage
@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application-h2.cmd
@rem start
application-h2.cmd start path\to\file-storage
@rem stop
application-h2.cmd stop
@rem cleanup
application-h2.cmd clean path\to\file-storage
note: tested on windows 10
binaries: which
, del
, wget
, taskkill
, mkdir
and of course java
, jps
are required
enjoy :)