mirror of
https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git
synced 2024-11-22 05:40:10 +00:00
add _nohealthcheck tag
This commit is contained in:
parent
30b37108d0
commit
d0e2734795
1 changed files with 17 additions and 0 deletions
17
.github/workflows/deploy.yml
vendored
17
.github/workflows/deploy.yml
vendored
|
@ -126,3 +126,20 @@ jobs:
|
||||||
push: true
|
push: true
|
||||||
tags: ghcr.io/${{ env.GHCR_IMAGE }}:telegraf
|
tags: ghcr.io/${{ env.GHCR_IMAGE }}:telegraf
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
# Change Dockerfile to use telegraf_nohealthcheck tag of build image and disable healthcheck:
|
||||||
|
- name: change build image to use telegraf tag of docker-docker-tar1090
|
||||||
|
run: |
|
||||||
|
sed -i "s|FROM ghcr.io/sdr-enthusiasts/docker-tar1090:telegraf|FROM ghcr.io/sdr-enthusiasts/docker-tar1090:telegraf_nohealthcheck|g" ./Dockerfile
|
||||||
|
|
||||||
|
# Build "telegraf"
|
||||||
|
- name: Build & Push - telegraf
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
no-cache: true
|
||||||
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: ghcr.io/${{ env.GHCR_IMAGE }}:telegraf_nohealthcheck
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
Loading…
Reference in a new issue