CodeBuildでDocker in Dockerする(CloudFormation)
5287 ワード
やり方
CodeBuild Project > Environment > PrivilegedModeをTrueにする
PrivilegedMode:
プロジェクトで Docker イメージを実行する方法を示します。true を指定して、Docker コンテナ内の Docker デーモンを実行できるようにします。
AWS CodeBuild プロジェクト環境
Before
CodeBuildProject:
Description: Creating AWS CodeBuild project
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Description: !Sub Building stage for ${Branch}.
Environment:
ComputeType: BUILD_GENERAL1_SMALL
EnvironmentVariables:
- Name: Branch
Value: !Ref Branch
Image: !Ref CodeBuildImage
Type: LINUX_CONTAINER
Name: !Sub ${ServiceName}-${Branch}-build
ServiceRole: !Ref CodeBuildRole
Source:
Type: CODEPIPELINE
TimeoutInMinutes: 5
After
CodeBuildProject:
Description: Creating AWS CodeBuild project
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Description: !Sub Building stage for ${Branch}.
Environment:
ComputeType: BUILD_GENERAL1_SMALL
EnvironmentVariables:
- Name: Branch
Value: !Ref Branch
Image: !Ref CodeBuildImage
Type: LINUX_CONTAINER
PrivilegedMode: True
Name: !Sub ${ServiceName}-${Branch}-build
ServiceRole: !Ref CodeBuildRole
Source:
Type: CODEPIPELINE
TimeoutInMinutes: 5
エラー
上記の指定をしないと↓のエラーが出る。
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
備考
- 手作業でやる場合: CodeBuildでDocker in Dockerする
Author And Source
この問題について(CodeBuildでDocker in Dockerする(CloudFormation)), 我々は、より多くの情報をここで見つけました https://qiita.com/sot528/items/ab0285b9907a29be840a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .