Skip to content

+x

+x #10

Workflow file for this run

name: sshpass-构建和提交docker
on:
push:
branches: [main]
paths:
- "sshpass/**"
- ".github/workflows/sshpass.yml"
- "!**.md"
jobs:
# 并发构建
setup-build-publish-v3:
runs-on: ubuntu-latest
name: 构建和推送docker镜像v3
steps:
- name: 更新代码
# 使用action库 actions/checkout获取源码
uses: actions/checkout@v3
# ########## rsync ###########################
-
name: 登录 Docker Hub
uses: docker/login-action@v2
with:
username: adockero
password: ${{ secrets.PASSWORD }}
- name: 构建镜像 sshpass
uses: docker/build-push-action@v3
with:
# Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
tags: adockero/sshpass
# Path to the Dockerfile (Default is '{path}/Dockerfile')
context: ./sshpass/autossh
# file: "./gvisor/Dockerfile.sshd.notCluster"
# Always attempt to pull a newer version of the image
pull: true
push: true
# 构建参数
# build-args: |
# FROM_ARG=adockero/sshd
# APK_ARG=rsync
# Adds labels with git repository information to the built image
labels: true
- name: 构建镜像 adockero/sshpass:autossh
uses: docker/build-push-action@v3
with:
# Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
tags: adockero/sshpass:autossh
# Path to the Dockerfile (Default is '{path}/Dockerfile')
context: ./sshpass/autossh
# file: "./gvisor/Dockerfile.sshd.notCluster"
# Always attempt to pull a newer version of the image
pull: true
push: true
# 构建参数
# build-args: |
# FROM_ARG=adockero/sshd
# APK_ARG=rsync
# Adds labels with git repository information to the built image
labels: true
- name: 构建镜像 sshpass
uses: docker/build-push-action@v3
with:
# Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
tags: adockero/sshpass:proxychains
# Path to the Dockerfile (Default is '{path}/Dockerfile')
context: ./sshpass/proxychains
# file: "./gvisor/Dockerfile.sshd.notCluster"
# Always attempt to pull a newer version of the image
pull: true
push: true
# 构建参数
# build-args: |
# FROM_ARG=adockero/sshd
# APK_ARG=rsync
# Adds labels with git repository information to the built image
labels: true