Skip to content

feat: enable caddy for reverse proxying #10

feat: enable caddy for reverse proxying

feat: enable caddy for reverse proxying #10

Workflow file for this run

name: ci
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
buildx:
strategy:
matrix:
context: [app, scripts, webserver]
platform: [linux/amd64,linux/arm64]
runs-on: ubuntu-latest
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
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push app
uses: docker/build-push-action@v5
with:
context: ./${{ matrix.context }}
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/iot-api-server-${{ matrix.context }}:latest
platforms: ${{ matrix.platform }}