feat: add monitoring arm-amd version

This commit is contained in:
Mauricio Siu
2025-02-02 20:23:49 -06:00
parent 1661022d56
commit d84a22fa72
2 changed files with 117 additions and 23 deletions

View File

@@ -77,26 +77,3 @@ jobs:
tags: |
siumauricio/server:${{ github.ref_name == 'main' && 'latest' || 'canary' }}
platforms: linux/amd64
build-and-push-monitoring-image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile.monitoring
push: true
tags: |
dokploy/monitoring:${{ github.ref_name == 'main' && 'latest' || 'canary' }}
platforms: linux/amd64