当前位置: 首页 > 软件库 > 云计算 > >

aws-codebuild-docker-images

授权协议 View license
开发语言 C/C++
所属分类 云计算
软件类型 开源软件
地区 不详
投 递 者 王云
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

AWS CodeBuild curated Docker images

This repository holds Dockerfiles of official AWS CodeBuild curated Docker images. Please refer to the AWS CodeBuild User Guide for list of environments supported by AWS CodeBuild.

Build Status

The master branch will sometimes have changes that are still in the process of being released in AWS CodeBuild. See the latest released versions of the Dockerfiles here

How to build Docker images

Steps to build Standard 5.0 image

  • Run git clone https://github.com/aws/aws-codebuild-docker-images.git to download this repository to your local machine
  • Run cd ubuntu/standard/5.0 to change the directory in your local workspace. This is the location of the Standard 5.0 Dockerfile with Ubuntu base.
  • Run docker build -t aws/codebuild/standard:5.0 . to build Docker image locally

To poke around in the image interactively, build it and run:docker run -it --entrypoint sh aws/codebuild/standard:5.0 -c bash

To let the Docker daemon start up in the container, build it and run:docker run -it --privileged aws/codebuild/standard:5.0 bash

$ git clone https://github.com/aws/aws-codebuild-docker-images.git
$ cd aws-codebuild-docker-images
$ cd ubuntu/standard/5.0
$ docker build -t aws/codebuild/standard:5.0 .
$ docker run -it --entrypoint sh aws/codebuild/standard:5.0 -c bash

Image maintenance

Some of the images in this repository are no longer actively maintained by AWS CodeBuild and may no longer build successfully. These images will not receive any further updates. They remain in this repository as a reference for the contents of these images that were previously released by CodeBuild.

The following images are actively maintained by AWS CodeBuild, and are listed in the CodeBuild console.

  • 使用docker打包python项目并在本地模拟部署aws lambda 前言 本文主要记录使用docker打包python项目并部署到lambda的流程以及遇到的一些问题。 配置:Windows11,WSL2,Ubuntu20.04,VScode 一、docker打包python项目 1.准备工作 在requirements.txt中写入需要安装的库: -f https://download.p

  • 前言 主要用来记录自已怎么通过gitlab-cicd实现自动化部署 通过git代码来触发自动更新 具体的参考资料如下: GitLab CI/CD 教程 官网gitlab对c

  • 一、什么是 Docker Compose Docker Compose 是 Docker 官方编排(Orchestration)项目之一,负责快速的部署分布式应用。 1.概述 Compose 项目是 Docker 官方的开源项目,负责实现对 Docker 容器集群的快速编排。从功能上看,跟 OpenStack 中的 Heat 十分类似。 其代码目前在 https://github.com/dock

  • Docker基础 这篇基础文章是方便用户在使用cSphere平台之前,了解docker基础知识。 针对已经有一定的Linux基础知识的用户。 Docker是什么 Docker是一个改进的容器技术。具体的“改进”体现在,Docker为容器引入了镜像,使得容器可以从预先定义好的模版(images)创建出来,并且这个模版还是分层的。 Docker经常被提起的特点: 轻量,体现在内存占用小,高密度 快速,

 相关资料
  • 我正在使用AWS CodeBuild来构建我的应用程序。我正在使用示例构建规范文件,如下所示:https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec ref示例我已经将自定义Docker映像上载到AWS ECR,其中包含构建我的应用程序的必要条件(基于Java/Scala)。我发现以

  • 我有一个Django应用程序的简单代码构建项目,我想在docker容器中启动一个Postgres数据库进行测试。 命令是: 在我的本地机器上,一切都工作得很好,但在AWS CodeBuild中,我收到了错误: psql:错误:无法连接到服务器:无法连接到服务器:没有这样的文件或目录服务器是否在本地运行并接受Unix域套接字"/var/run/postgresql/. s. PGSQL.5432"上

  • 我正在尝试使用AWS CodeBuild设置我的节点项目。 触发生成时,命令失败: 调用GetAuthorizationToken操作时发生错误(AccessDeniedException):用户无权对资源执行:ecr:GetAuthorizationToken:[Container]2018/10/26 10:04:12命令未成功退出$(aws ecr get login)退出状态255 在IA

  • 因为AWS代码构建提供了“Docker”策划的图像(http://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref.html),我想重用其中一个来构建我的自定义代码构建映像(http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker-custom-im

  • 我正在尝试设置AWS Codebuild以将应用程序部署到AWS Elastic Beanstek。 问题是EB CLI似乎无法从AWS CodeBuild获得(看起来应该,阅读此…https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli-codebuild.html) 所以当我在CodeBuild上指定eb cli命令时: 我得到

  • 我设置AWS CodeBuild将大量工件文件写入S3。CodeBuild yaml文件定义了哪些文件和CodeBuild项目设置定义了S3存储桶。而且一切正常。 当您从AWS CodePipeline触发AWS CodeBuild时,CodePipeline似乎忽略了AWS CodeBuild的工件设置,而是将工件强制放入codemipline S3桶中的zip文件中。 有没有一种方法可以使用C