https://github.com/obophenotype/upheno
Raw File
Tip revision: 8607adcfe08c686b2e312848e6eb02ce2bc66c83 authored by Nico Matentzoglu on 08 July 2024, 16:14:30 UTC
Merge pull request #953 from DnlRKorn/Issue952
Tip revision: 8607adc
run.sh
#!/bin/sh
# Wrapper script for docker.
#
# This is used primarily for wrapping the GNU Make workflow.
# Instead of typing "make TARGET", type "./run.sh make TARGET".
# This will run the make workflow within a docker container.
#
# The assumption is that you are working in the src/ontology folder;
# we therefore map the whole repo (../..) to a docker volume.
#
# See README-editors.md for more details.
docker run -v $PWD/:/work -w /work/ -e ROBOT_JAVA_ARGS='-Xmx8G' --rm -ti obolibrary/odkfull "$@"
back to top