Files
pipelines/.github/workflows/docker_images.yaml
Lars Hampe ac3613b384
All checks were successful
Docker / Images (push) Successful in 3m22s
feat: add missing checkout focker docker images workflow
2026-03-20 22:19:15 +01:00

31 lines
723 B
YAML

name: Docker
on:
push:
branches: ["main"]
jobs:
images:
name: Images
runs-on: ubuntu-latest
steps:
- name: Set docker chmod (temp solution)
run: sudo chmod 666 /var/run/docker.sock
- name: Checkout
uses: actions/checkout@v4
- name: Docker - Login
uses: docker/login-action@v1
with:
registry: git.hashdot.co
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/images/build/Dockerfile
push: true
tags: git.hashdot.co/lars/pipelines/bun:latest