mirror of
https://github.com/bjoernellens1/cps_loki.git
synced 2024-11-22 23:33:50 +00:00
Create buildx-bake.yml
This commit is contained in:
parent
765fd64dd7
commit
0685ffb715
45
.github/workflows/buildx-bake.yml
vendored
Normal file
45
.github/workflows/buildx-bake.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Docker Compose Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main # Change this to your main branch name
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
#- name: Set up QEMU
|
||||
# run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
# - name: Login to Docker Hub (if needed)
|
||||
# uses: docker/login-action@v1
|
||||
# with:
|
||||
# username: ${{ secrets.DOCKER_USERNAME }}
|
||||
# password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
#- name: Login to GitHub Container Registry
|
||||
# run: echo ${{ secrets.GHCR_PAT }} | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
|
||||
- name: 'Login to GitHub Container Registry'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{github.actor}}
|
||||
password: ${{secrets.GHCR_PAT}}
|
||||
|
||||
- name: Build and Push Docker Compose Services
|
||||
run: |
|
||||
docker buildx bake --push
|
||||
docker buildx bake -f docker-compose.yml --push
|
||||
#env:
|
||||
# COMPOSE_FILE: docker-compose.yml
|
Loading…
Reference in New Issue
Block a user