シンプルなUbuntu
これは何ですか.
これはDockerでUbuntuのStuffを行うためのチュートリアルです.これは、実行することができますほとんどすべてのイメージで一般的なことを行うための出発点になることを意図されて
bash
or sh
. 他のチュートリアルは、この基礎に関してこれに頼ります.なぜこれを作る?
私は覚えて、他の人と簡単なものを共有する場所にそれを維持する.
ステップ
-i
and -t
フラグ.See documentation for more detail # Run the image directly rather than exec into a container
docker run --name ubuntu-playground -it ubuntu bash
docker ps
# ubuntu-playground will be in the NAMES column
# From prompt inside container
apt-get update
apt-get install -y curl jq
curl https://jsonplaceholder.typicode.com/users/1 | jq
Reference
この問題について(シンプルなUbuntu), 我々は、より多くの情報をここで見つけました https://dev.to/mattcale/simple-ubuntu-docker-playground-23g2テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol