mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
6 lines
268 B
Bash
6 lines
268 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
MAX_MEMORY=${MAX_MEMORY:-1G}
|
||
|
|
||
|
java -server -Xmx"$MAX_MEMORY" -XX:+UnlockExperimentalVMOptions -XX:+HeapDumpOnOutOfMemoryError -XX:+OptimizeStringConcat -XX:+UseStringDeduplication -XX:+UseCompressedOops -XX:+UseNUMA -XX:+UseG1GC -jar /app/piped.jar
|