https://www.docker.com @docker github@docker.com Overview Repositories158 Projects2 Packages People32 More PinnedLoading roadmaproadmapPublic Welcome to the Public Roadmap for All Things Docker! We welcome your
GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
// https://github.com/docker-library/bashbrew/blob/master/architecture/oci-platform.go...varSupportedArches=map[string]OCIPlatform{"amd64":{OS:"linux",Architecture:"amd64"},"arm32v5":{OS:"linux",Architecture:"arm",Variant:"v5"},"arm32v6":{OS:"linux",Architecture:"arm",Variant:"v6"}...
Docker Scout id: docker-scout if: ${{ github.event_name == 'pull_request' }} uses: docker/scout-action@v1 with: command: compare image: ${{ steps.meta.outputs.tags }} to-env: production ignore-unchanged: true only-severities: critical,high github-token: ${{ secrets.GITHUB_TOKEN }}...
Docker Metadata action: extracts metadata from Git reference and GitHub events to generate tags, labels, and annotations. Docker Setup Compose: installs and sets upCompose. Docker Setup Docker: installs Docker CE. Docker Setup QEMU: installsQEMUstatic binaries for multi-platform builds. ...
name:github-action-demo# 工作流名称on:push:branches:-develop# 生效分支jobs:first-github-job:# 任务名称 自定义runs-on:ubuntu-latest# 运行环境steps:-name:Checkoutuses:actions/checkout@v3#复用的 action 会把仓库代码检出到 runner 中。# 压缩项目-name:Build projectrun:zip-vr my-artifact ./**# ...
1、在我的github仓库中,创建workflow: workflow脚本内容: github.com/albin504/ubu 2、把workflow提交到代码仓库,会自动触发自动化部署。 点击任务,能看到自动化部署的log,便于排查问题。 任务执行完毕,docker镜像就自动push到我的dockerHub了,非常方便。 由于github是在云端执行构建,构建速度肯定比我本地build Docke...
在“常规”部分下,选择GitHub 项目并输入分叉存储库 URL,例如https://github.com/cynthn/nodejs-docs-hello-world 在“源代码管理”部分下,选择“Git”,输入分叉存储库.gitURL,例如https://github.com/cynthn/nodejs-docs-hello-world.git 在“生成触发器”部分下,为 GITscm 轮询选择 GitHub 挂钩触发器。
Vue 项目:https://github.com/yimogit/admin.ui.plusfork 自zhontai/admin.ui.plus 安装了 docker 的 Linux 服务器 后端asp.net core7.0 项目的部署 执行步骤及重点 仓库地址:https://github.com/yimogit/Admin.Core 部署文件:.github\workflows\test-deploy.yml ...
登录github的docker镜像仓库(docker login) # -u 后面跟github用户名 # -p 后面跟github的token,也可以不用token,用密码也行 docker login docker.pkg.github.com -u username -p token 当然docker.pkg.github.com一般不常用,常用的是ghcr.io,其登录方式类似 # username和token需要换成自己的 docker login g...