Skip to content

Instantly share code, notes, and snippets.

@sethbergman
Created November 13, 2015 23:35
Show Gist options
  • Save sethbergman/efc0afc2931ad740dda0 to your computer and use it in GitHub Desktop.
Save sethbergman/efc0afc2931ad740dda0 to your computer and use it in GitHub Desktop.
docker tag <image> <newName>/<repoName>:<tagName>
FROM busybox:ubuntu-14.04
RUN echo “#!/bin/sh\n” > /test.sh
RUN echo “echo \”this is version 1\”” >> /test.sh
ENTRYPOINT [“sh”, “/test.sh”]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment