We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker inspect:
[ { "Id": "*****", "Created": "2017-03-21T07:43:54.073781336Z", "Path": "/bin/sh", "Args": [ "-c", "java -Dnexus-work=${SONATYPE_WORK} -Dnexus-webapp-context-path=${CONTEXT_PATH} -Xms${MIN_HEAP} -Xmx${MAX_HEAP} -cp 'conf/:lib/*' ${JAVA_OPTS} org.sonatype.nexus.bootstrap.Launcher ${LAUNCHER_CONF}" ], ......
running runlike get:
docker run ***** /bin/sh -c 'java -Dnexus-work=${SONATYPE_WORK} -Dnexus-webapp-context-path=${CONTEXT_PATH} -Xms${MIN_HEAP} -Xmx${MAX_HEAP} -cp \'conf/:lib/*\' ${JAVA_OPTS} org.sonatype.nexus.bootstrap.Launcher ${LAUNCHER_CONF}'
but single quote cannot inside single quotes https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Single-Quotes
use '"'"' instead of \' worked https://stackoverflow.com/questions/1250079/how-to-escape-single-quotes-within-single-quoted-strings
The text was updated successfully, but these errors were encountered:
No branches or pull requests
docker inspect:
running runlike get:
docker run ***** /bin/sh -c 'java -Dnexus-work=${SONATYPE_WORK} -Dnexus-webapp-context-path=${CONTEXT_PATH} -Xms${MIN_HEAP} -Xmx${MAX_HEAP} -cp \'conf/:lib/*\' ${JAVA_OPTS} org.sonatype.nexus.bootstrap.Launcher ${LAUNCHER_CONF}'
but single quote cannot inside single quotes
https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Single-Quotes
use '"'"' instead of \' worked
https://stackoverflow.com/questions/1250079/how-to-escape-single-quotes-within-single-quoted-strings
The text was updated successfully, but these errors were encountered: