LoginSignup
3
1

More than 3 years have passed since last update.

docker M1 macプレビュー版のダウンロード

Posted at

はじめに

タイトル通りです

docker M1 macプレビュー版がブログで公開されました

今朝ブログでプレビュー版が一般公開されてましたね!

Docker Developer Preview Programに参加せずとも、これでサクッと試すことが可能に🎉
※ ちなみにプログラムの参加にはフォーム提出 => メール受信 => slack登録 & フォーム提出 => slackの #dev-preview-program チャンネルに招待される というちょっと長い工程が必要です。
参考

プレビュー版を試してプルリクバンバン送りたい方はプログラムに参加することをおすすめします!

動かしてみた

docker 起動させるとチュートリアル始まりました


docker run --name repo alpine/git clone https://github.com/docker/getting-started.git
docker cp repo:/git/getting-started/ .
cd getting-started
docker run -d -p 80:80 --name docker-tutorial docker101tutorial
docker tag docker101tutorial [dockerID]/docker101tutorial
docker push [dockerID]/docker101tutorial

:~ $ docker ps -a
CONTAINER ID   IMAGE               COMMAND                  CREATED          STATUS                       PORTS                NAMES
5403e08b5bc1   docker101tutorial   "/docker-entrypoint.…"   15 minutes ago   Up 15 minutes                0.0.0.0:80->80/tcp   docker-tutorial
a124acdfa30f   alpine/git          "git clone https://g…"   19 minutes ago   Exited (0) 19 minutes ago                         repo

コンテナ起動してるし、dockerHubへのpushもできてるし、問題なさそう☺️

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1