Skip to content

Instantly share code, notes, and snippets.

@tobstarr
Created July 2, 2013 11:25
Show Gist options
  • Save tobstarr/5908533 to your computer and use it in GitHub Desktop.
Save tobstarr/5908533 to your computer and use it in GitHub Desktop.
root@tobstarr002:~# docker build -t test - << EOF
> FROM ubuntu
> RUN echo 1
> EOF
Uploading context 2048 bytes
Step 1 : FROM ubuntu
---> 8dbd9e392a96
Step 2 : RUN echo 1
---> Running in 3756c0b5a3f9
---> 303730c5adc4
Successfully built 303730c5adc4
root@tobstarr002:~# docker run -t -i 303730c5adc4 hostname
3756c0b5a3f9
root@tobstarr002:~# docker run -t -i 303730c5adc4 hostname
3756c0b5a3f9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment