Last active
April 12, 2016 14:32
-
-
Save kitsuyui/476c2ea7d4049dee014d405d81cc3631 to your computer and use it in GitHub Desktop.
超軽量 Docker Image true (125 bytes) と sleeping-beauty (129 bytes) ref: http://qiita.com/kitsuyui/items/ba6eb17e6bbe97aa6b04
This file contains hidden or 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
docker run scratch |
This file contains hidden or 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
Unable to find image 'scratch:latest' locally | |
docker: Error response from daemon: 'scratch' is a reserved name. | |
See 'docker run --help'. |
This file contains hidden or 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
FROM scratch | |
ADD somefile / | |
CMD /somefile |
This file contains hidden or 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
FROM tianon/true | |
VOLUME /path/to/somedata |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment