Created
July 2, 2013 11:25
-
-
Save tobstarr/5908533 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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