トップ «前の日記(2024年08月12日) 最新 編集

Masa's blog

検索キーワード:

2024年12月07日 Docker on Slackware64-current [長年日記]

_ Docker on Slackware64-current

DockerをSlackware64-currentに導入してみた。基本的にはPonceさんのGithubからSlackbuildスクリプトをダウンロードしてきて諸々をビルドしていく。 ソースはSlackbuild内の*.infoに記述されているので、そこからダウンロードする。 ビルドする際にはsuではなくsu -でrootになって行う。

ビルド後source /etc/profile.d/go.shを実行し、gcc-goではなくgoogle-go-langが優先して実行されるように設定し、以降のビルドを行う。 go.shはビルド時のみ必要で、Docker実行時には必要ない。

chmod +x /etc/rc.d/rc.libvirt

/etc/rc.d/rc.local

if [ -x /etc/rc.d/rc.libvirt ]; then
	/etc/rc.d/rc.libvirt start
fi
chmod +x /etc/rc.d/rc.docker

/etc/rc.d/rc.local

if [ -x /etc/rc.d/rc.docker ]; then
	/etc/rc.d/rc.docker start
fi

_ 動作確認

以下のコマンドを実行し

$ docker run hello-world

以下のような表示がされればOK

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete
Digest: sha256:305243c734571da2d100c8c8b3c3167a098cab6049c9a5b066b6021a60fcb966
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

$