You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up the SPC example, I had to use single quotes for the INSTALL label, otherwise docker would try to do environment variable substitution (and come up with empty variables for ${DATADIR}, etc) during docker build.
The text was updated successfully, but these errors were encountered:
It would be, but the docker image builder interpolates environment variables in LABEL statements, so instead of getting "-e DATADIR=${DATADIR}" in the image metadata, "atomic" only gets "-e DATADIR=".
When setting up the SPC example, I had to use single quotes for the INSTALL label, otherwise docker would try to do environment variable substitution (and come up with empty variables for
${DATADIR}
, etc) duringdocker build
.The text was updated successfully, but these errors were encountered: