0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DockerにUbuntu環境を構築

Last updated at Posted at 2024-09-16

Dockerについてですが
正直、名前は知ってましたけど
初めて使うんでよくわかってないです😇

まず、手始めにDockerにUbuntu環境を構築してみることにします

参考にした方↓

docker hubのubuntuイメージを確認

最新安定版の24.04版を使うことにします

% docker pull ubuntu:24.04

24.04: Pulling from library/ubuntu
31e907dcc94a: Pull complete 
Digest: sha256:8a37d68f4f73ebf3d4efafbcf66379bf3728902a8038616808f04e34a9ab63ee
Status: Downloaded newer image for ubuntu:24.04
docker.io/library/ubuntu:24.04

インストールしたimagesの確認

% docker images

REPOSITORY                 TAG       IMAGE ID       CREATED         SIZE
ubuntu                     24.04     edbfe74c41f8   6 weeks ago     78.1MB
docker/welcome-to-docker   latest    c1f619b6477e   10 months ago   18.6MB

docker desktopでも確認
スクリーンショット 2024-09-13 16.21.55.png

■ubuntuが入ったら
まずはubuntuの起動をする

docker run -it -d --name ubuntu ubuntu:24.04

fb29493b8e55f8565d7fa409b06d63c9b43539559f31c001a2010cfaff4adfbe

何かidっぽい文字列が出てきましたね
これがコンテナのIDですかね?

正しく起動されてるか確認する

docker ps

CONTAINER ID   IMAGE          COMMAND       CREATED              STATUS              PORTS     NAMES
fb29493b8e55   ubuntu:24.04   "/bin/bash"   About a minute ago   Up About a minute             ubuntu

docker desktopも確認
スクリーンショット 2024-09-13 16.54.46.png

statusがRunningになってますね

じゃあコンテナ内に入りましょう

docker exec -it ubuntu /bin/bash

root@fb29493b8e55:/# 

root権限で入れましたね

抜けたい時は

exit

コンテナの停止は
docker stop コンテナ名なので

docker stop ubuntu

スクリーンショット 2024-09-13 17.01.58.png

statusがExitedになってますね

コンテナに再度入りたい場合は
コンテナを起動してログイン

docker start ubuntu
docker exec -it ubuntu /bin/bash

とりあえず今日はここまで😊

その他のDockerImageを試したいよ〜って人は
下記を参照

先人の知恵って凄い😹

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?