Alex Wellnitz 0e10e063c0
Some checks failed
Build Docker Container / Build-Container-Image (push) Failing after 1m0s
test diffrent docker port
2025-03-17 15:04:26 +01:00

24 lines
678 B
YAML

name: Build Docker Container
run-name: ${{ gitea.actor }} is building container
on: [push]
jobs:
Build-Container-Image:
runs-on: ubuntu-latest
steps:
- name: Build and push
uses: docker/build-push-action@v5
env:
DOCKER_HOST: "tcp://localhost:2375"
DOCKER_TLS_CERTDIR: "/certs"
DOCKER_TLS_VERIFY: 1
DOCKER_CERT_PATH: "/certs/client"
with:
context: .
file: ./Dockerfile
target: dind
platforms: |
linux/amd64
# push: true
# tags: |
# ${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}