下記にDockerのAlmaLinuxをインストールする手順が記載されているのでURLを開きます。
https://hub.docker.com/r/almalinux/almalinux
Dockuerのプルコマンドが記載されているのでこちらのコマンドを実行します。
Windowsの場合はコマンドプロンプトを開きコマンドを実行します。
$ docker pull almalinux/almalinux
Using default tag: latest
latest: Pulling from almalinux/almalinux
ba2c2d4a4d0c: Pull complete
Digest: sha256:cb4fcfa73493dad33a01f55bbe738c764002b622c64c28a585488cc819b5d26a
Status: Downloaded newer image for almalinux/almalinux:latest
docker.io/almalinux/almalinux:latest
DockerDesktopのImagesタブを確認すると、AlmaLinuxがインストールされていることが確認できます。
上記実行しても「Exited」へすぐにステータスが戻ってしまいます。
起動できるようにエラーを調査していきます。
目次
AlimaLinuxを起動してもExitedになってしまう問題の解消
「almalinux/almalinux」は非推奨となっていたので「almalinux」の公式イメージを取得します。
$ docker pull almalinux
Using default tag: latest
latest: Pulling from library/almalinux
3239c63efc84: Pull complete
Digest: sha256:aeb2dca8a737ae0bbd5d9cb7de68acd88e8c4593f77b053c46a1669ca9c99ac9
Status: Downloaded newer image for almalinux:latest
docker.io/library/almalinux:latest
コマンドラインから下記を実行することでAlimaLinuxのコンテナを起動できました。
$ docker run -it --name="almalinux" almalinux:latest /bin/bash
Dockerのチュートリアル
https://docs.docker.jp/get-started/index.html
よくわからなかったのでひとまずDockerのチュートリアルで理解を深めようと思います。
「docker run -d -p 80:80 docker/getting-started」こちらは、バックグラウンドでコンテナ内の80ポートに対し、ホスト上のポート80を割り当ててウェブブラウザを開く設定で「docker/getting-started」イメージを使用しコンテナを作成するコマンドみたいです。
$ docker run -d -p 80:80 docker/getting-started
Unable to find image 'docker/getting-started:latest' locally
latest: Pulling from docker/getting-started
df9b9388f04a: Pull complete
5867cba5fcbd: Pull complete
4b639e65cb3b: Pull complete
061ed9e2b976: Pull complete
bc19f3e8eeb1: Pull complete
4071be97c256: Pull complete
79b586f1a54b: Pull complete
0c9732f525d6: Pull complete
Digest: sha256:b558be874169471bd4e65bd6eac8c303b271a7ee8553ba47481b73b2bf597aae
Status: Downloaded newer image for docker/getting-started:latest
1a86ddf5a97ac5458b335da2a3beb37f071ee6902fe7d87da34f8e33360b5d71
http://localhost/tutorial/
にアクセスすると下記が表示されたので、コンテナ起動していますね。
docker run -it –name=”almalinux” alimalinux:latest /bin/bashのコマンドを実行するとdocker: Error response from daemon: pull access denied for alimalinux, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied.
See ‘docker run –help’.のエラーがでます。リポジトリの作成の仕方をおしえてほしいです。
docker run -it –name=”almalinux” almalinux:latest /bin/bash
alimalinux:latest > almalinux:latest
綴り間違いでした申し訳ございません。
※記事も修正しました。