mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
11 lines
293 B
Bash
11 lines
293 B
Bash
#!/bin/sh
|
|
|
|
exec java \
|
|
--add-exports java.base/sun.nio.ch=ALL-UNNAMED \
|
|
-Ddhfs.objects.persistence.files.root=/dhfs_root/p \
|
|
-Ddhfs.objects.distributed.root=/dhfs_root/d \
|
|
-Ddhfs.fuse.root=/dhfs_root_fuse \
|
|
-Dquarkus.http.host=0.0.0.0 \
|
|
"$@" \
|
|
-jar quarkus-run.jar
|