vcell / data /docker /build /admin /entrypoint.sh
introvoyz041's picture
Migrated from GitHub
9d54b72 verified
#!/usr/bin/env bash
show_help() {
echo "VCell superuser CLI"
echo "type help for usage"
exit 1
}
if [ "$#" -lt 1 ]; then
show_help
fi
shopt -s -o nounset
arguments=$*
# to debug, EXPOSE port 8000 (in Dockerfile) and include the following JVM arguments
# -Xdebug
# -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
java \
-XX:MaxRAMPercentage=100 \
-Dvcell.softwareVersion="$VCELL_VERSION" \
-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \
-Dlog4j.configurationFile=/usr/local/app/vcell-admin.log4j.xml \
-Dvcell.server.id="$VCELL_SITE" \
-Dvcell.python.executable=/usr/bin/python \
-Dvcell.installDir=/usr/local/app \
-Dvcell.primarySimdatadir.internal="$VCELL_SIMDATADIR_EXTERNAL" \
-Dvcell.secondarySimdatadir.internal="$VCELL_SIMDATADIR_SECONDARY_HOST" \
-Dvcell.server.dbConnectURL="$VCELL_DB_URL" \
-Dvcell.server.dbDriverName="$VCELL_DB_DRIVER" \
-Dvcell.server.dbUserid="$VCELL_DB_USER" \
-Dvcell.db.pswdfile=/run/secrets/dbpswd.txt \
-Dvcell.htc.user="$VCELL_BATCH_USER" \
-Dvcell.htc.hosts="$VCELL_BATCH_HOST" \
-Dvcell.htc.userkeyfile=/run/secrets/batchuserkeyfile \
-Dvcell.slurm.partition="$VCELL_SLURM_PARTITION" \
-Dvcell.server.maxOdeJobsPerUser="$VCELL_MAX_ODE_JOBS_PER_USER" \
-Dvcell.server.maxPdeJobsPerUser="$VCELL_MAX_PDE_JOBS_PER_USER" \
-cp './lib/*' \
org.vcell.admin.cli.AdminCLI $arguments
exit $?