Bamboo での Docker タスクの設定
The Docker task in Atlassian Bamboo allows you to use Docker images and containers in your Bamboo builds and deployments.
はじめる前に
- Make sure you have Docker installed. We advise to use the most recent version.
Define a Docker capability in Bamboo. See Defining a new Docker capability
- If you're using Bamboo on Windows, you can't run Docker commands directly from the Windows command line. To use Docker tasks with Bamboo Windows, run Docker Machine.
Docker タスクは次の Docker アクションをサポートします。
Docker イメージをビルドする
Builds a Docker image based on the specified Dockerfile. The Dockerfile may be provided as an existing file in the task's working directory or defined in the task configuration.The image is stored in Docker's local image installation directory and can be used by subsequent Docker tasks in the job. You can optionally save the image to a file in the working directory which can then be packaged as a build artifact.
Bamboo で Docker イメージをビルドするには
- Create a new Docker task for the relevant job. See Configuring tasks.
- Add a Task description.
- [このタスクを無効化] チェックボックスを使用して、タスクを実行するかどうかを制御します。
- Use the Add condition to task checkbox to make task run only when a certain condition is met.
You can find conditions on Atlassian Marketplace or implement your own. Select the Build a Docker image command and complete the settings. See more information about the settings below:
Docker コンテナを実行する
指定したイメージに基づいて Docker コンテナを起動します。
By default, the task's working directory is mounted and used as the Docker container's working directory, but you can specify your own settings.
By default, the container is removed on completion of the task, but you can select Detach container to have the container continue to run after a deployment project completes. Containers can be linked to detached containers started by preceding tasks in a job by selecting the Link to detached containers option.
Note that a non-detached container that fails to start will not be removed when the Bamboo task completes. See this KB article for more details.
Bamboo で Docker コンテナを実行するには:
- 関連ジョブ用に新しい Docker タスクを作成します。詳細については、タスクの構成を参照してください。
- タスクの説明を追加すると、タスクの作成理由を思い出すのに役立ちます。
- [このタスクを無効化] チェックボックスを使用して、タスクを実行するかどうかを制御します。
- Use the Add condition to the task checkbox to make task run only when a certain condition is met.
You can find conditions on Atlassian Marketplace or implement your own. Select the Run a Docker container command and complete the settings. See more information about the settings below:
Docker イメージを Docker レジストリにプッシュする
Docker を Docker イメージにプッシュします。これには、中心となる Docker ハブ レジストリまたはカスタム レジストリを使用できます。
Bam\boo から Docker リポジトリをレジストリにプッシュするには:
- 関連ジョブ用に新しい Docker タスクを作成します。詳細については、タスクの構成を参照してください。
- タスクの説明を追加すると、タスクの作成理由を思い出すのに役立ちます。
- [このタスクを無効化] チェックボックスを使用して、タスクを実行するかどうかを制御します。
- Use the Add condition to the task checkbox to make task run only when a certain condition is met.
You can find conditions on Atlassian Marketplace or implement your own. Select the Push a Docker image to a Docker registry command and complete the settings. See more information about the settings below:
高度な認証
The push and pull tasks allow you to define a username and password for authentication purposes.
If the other tasks require authentication, or if you want to share docker credentials between all builds for certain agents, it's possible to create the docker configuration file ~/.docker/config.json
on the agent itself.
Bamboo will only use the contents of ~/.docker/config.json
if you've selected Use the agent's native credentials as the preferred authentication type for the Docker task. Otherwise, if present, Bamboo will copy the contents of the original configuration file to a temporary location each time the docker
command is invoked so it can be adjusted to the provided credentials.
The following is an example of the contents of ~/.docker/config.json
:
{
"auths": {
"https://index.docker.io/v1/": {
"auth": "ZG9ja2VyaHVidXNlcjpkb2NrZXJodWJwYXNz"
},
"https://index.example.com": {
"auth": "XhhbXBsZXVzZXI6ZXhhbXBsZXBhc3M="
}
}
}
When using the push and pull tasks, leave the authentication fields empty in order to use ~/.docker/config.json
instead.
トラブルシューティング
デバイスに空き容量が残っていない
Docker stores its images in a local image installation directory. Over time this directory may grow to consume all of the available disk space. When this occurs you should remove unused images by running the docker rmi
command.
ディスク容量に影響する次の Docker の問題によって詳細がわかる場合があります。
Docker コンテナ内で作成されたファイルでパーミッションが拒否された
Docker はルート ユーザーとしてコンテナ内で処理を実行します。つまり、マウント ボリューム上で作成されたファイルは,Docker コマンドを実行するユーザー (bamboo エージェント ユーザー) ではなく、ルート ユーザーによって所有されます。これにより、次のタスクでホスト上のこれらのファイルにアクセスする必要がある場合に問題が発生することがあります。
Docker は将来、コンテナとホスト ユーザーの間でのマッピングを許可する予定です。それまでの間、マウント ボリューム内のファイルの所有者をホスト ユーザーに変更することでこの問題を回避できます。
- Docker run タスク構成で次の環境変数を設定することで、ホスト ユーザーの ID とグループ ID をコンテナに供給します。
HOST_UID=$UID
HOST_GID=$GID
マウント ボリューム内のファイルの所有者を変更するには、コンテナ内でスクリプトを実行します。
chown -R $HOST_UID:$HOST_GID /<path_to_mounted_volume>
Docker の実行中にパーミッションが拒否される
When attempting to run a Docker container you may see a permission denied issue:
2015/02/10 06:35:31 Post http:///var/run/docker.sock/build?rm=1&t=docker-toy-demo: dial unix /var/run/docker.sock: permission denied
解決策として、エージェントの Docker グループに Bamboo ユーザー エージェントを追加します。
有効な docker ファイルで実行エラーが発生する、または docker コンテナを起動できない
ビルド出力の例:
Driver devicemapper failed to get image rootfs 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158: Error mounting '/dev/mapper/docker-202:16-17252355-511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158' on '/mnt/docker/devicemapper/mnt/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158': invalid argument
simple 12-Feb-2015 12:12:14 Failing task since return code of [/usr/bin/docker build --no-cache=true --tag="docker.atlassian.io/dk:9.3" /home/bamboo/bamboo-agent-home/xml-data/build-dir/dkr-build-JOB1] was 1 while expected 0
error 12-Feb-2015 12:12:14 Error occurred while running Task 'Build docker image(5)' of type com.atlassian.bamboo.plugins.bamboo-docker-plugin:task.docker.cli.
error 12-Feb-2015 12:12:14 com.atlassian.bamboo.task.TaskException: Failed to execute task
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.service.BuildService.execute(BuildService.java:53)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.tasks.cli.DockerCliTask.execute(DockerCliTask.java:60)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.task.TaskExecutorImpl$3.call(TaskExecutorImpl.java:281)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.task.TaskExecutorImpl$3.call(TaskExecutorImpl.java:278)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.task.TaskExecutorImpl.executeTaskWithPrePostActions(TaskExecutorImpl.java:198)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.task.TaskExecutorImpl.executeTasks(TaskExecutorImpl.java:278)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.task.TaskExecutorImpl.execute(TaskExecutorImpl.java:105)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.build.pipeline.tasks.ExecuteBuildTask.call(ExecuteBuildTask.java:75)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.v2.build.agent.DefaultBuildAgent.build(DefaultBuildAgent.java:188)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.v2.build.agent.BuildAgentControllerImpl.waitAndPerformBuild(BuildAgentControllerImpl.java:112)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.v2.build.agent.DefaultBuildAgent$1.run(DefaultBuildAgent.java:110)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.utils.BambooRunnables$1.run(BambooRunnables.java:49)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.security.ImpersonationHelper.runWith(ImpersonationHelper.java:31)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.security.ImpersonationHelper.runWithSystemAuthority(ImpersonationHelper.java:20)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.security.ImpersonationHelper$1.run(ImpersonationHelper.java:52)
error 12-Feb-2015 12:12:14 at java.lang.Thread.run(Thread.java:745)
error 12-Feb-2015 12:12:14 Caused by: com.atlassian.bamboo.plugins.docker.client.DockerException: Error running Docker build command
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.client.DockerCmd.build(DockerCmd.java:149)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.service.BuildService.execute(BuildService.java:40)
error 12-Feb-2015 12:12:14 ... 15 more
error 12-Feb-2015 12:12:14 Caused by: com.atlassian.utils.process.ProcessException: Error executing /usr/bin/docker build --no-cache=true --tag="docker.atlassian.io/dk:9.3" /home/bamboo/bamboo-agent-home/xml-data/build-dir/DDT-REP-JOB1
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.process.DockerTaskProcessService.execute(DockerTaskProcessService.java:57)
error 12-Feb-2015 12:12:14 at com.atlassian.bamboo.plugins.docker.client.DockerCmd.build(DockerCmd.java:145)
error 12-Feb-2015 12:12:14 ... 16 more
If the agent consistently fails executing docker run commands, either when building an image or running an instance there is a risk that you've run into https://github.com/docker/docker/issues/4036. To help diagnose this you can SSH to the agent and look at the kernel messages by running:
dmesg
この問題を示すメッセージは数種類あります。例:
[83471099.881879] JBD2: no valid journal superblock found
[83471099.881883] EXT4-fs (dm-2): error loading journal
[88401612.723018] EXT4-fs (dm-1): warning: mounting fs with errors, running e2fsck is recommended
[88401612.724764] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: discard
[88401612.744549] EXT4-fs error (device dm-1): ext4_lookup:1448: inode #2: comm docker: deleted inode referenced: 131073
デバイス マッパーが破損するという大きなリスクがあります。つまり、Docker を停止し、devicemapper が使用するファイルを削除してから、Docker を再起動する必要があります。エラスティック エージェントで実行している場合は、エージェントを終了してから新しく起動するオプションも選択できます。
Docker を停止してファイルを削除するには、以下を実行します。
sudo -i
#stop the docker daemon
service docker stop
#remove the broken devicemapper files
rm -rf /var/lib/docker
service docker start
The location of the devicemapper files may differ from the example above. Run the following to find the exact path:
docker info