build and push
This commit is contained in:
parent
354d112004
commit
d249c056ba
33
.gitea/workflows/build-an-push.yaml
Normal file
33
.gitea/workflows/build-an-push.yaml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: build-and-push
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "main"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
services:
|
||||||
|
registry:
|
||||||
|
image: registry:2
|
||||||
|
ports:
|
||||||
|
- 32000:32000
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
driver-opts: network=host
|
||||||
|
- name: Build and push to local registry
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: localhost:32000/scrapper:latest
|
||||||
|
- name: Inspect
|
||||||
|
run: |
|
||||||
|
docker buildx imagetools inspect localhost:32000/scrapper:latest
|
||||||
Loading…
x
Reference in New Issue
Block a user