2023-11-16 17:38:37 +00:00
|
|
|
name: 'Build Custom docker:dind image'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build-container:
|
2023-11-16 17:43:19 +00:00
|
|
|
runs-on: docker
|
2023-11-16 17:38:37 +00:00
|
|
|
steps:
|
2023-11-16 17:46:46 +00:00
|
|
|
-
|
|
|
|
name: Prepare Container Environment
|
|
|
|
run: apt-get install ca-certificates curl gnupg
|
|
|
|
run: install -m 0755 -d /etc/apt/keyrings
|
|
|
|
run: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
|
|
run: chmod a+r /etc/apt/keyrings/docker.gpg
|
2023-11-16 17:47:30 +00:00
|
|
|
run: echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
2023-11-16 17:46:46 +00:00
|
|
|
run: apt-get update
|
|
|
|
run: apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
2023-11-16 17:38:37 +00:00
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
-
|
|
|
|
name: Push to Package Registry
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
tags: https://forgejo.neshweb.net/Neshura/docker-dind-bash:latest
|