/[LeafOK_CVS]/lbbs/.github/workflows/docker-image.yml
ViewVC logotype

Diff of /lbbs/.github/workflows/docker-image.yml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.2 by sysadm, Thu Jan 8 08:14:33 2026 UTC Revision 1.3 by sysadm, Sat Jan 10 06:53:46 2026 UTC
# Line 6  on: Line 6  on:
6    pull_request:    pull_request:
7      branches: [ "main" ]      branches: [ "main" ]
8    
9    env:
10      DOCKERHUB_PLATFORMS: linux/amd64,linux/arm64
11      BBSD_IMAGE: ${{ secrets.DOCKERHUB_USERNAME }}/lbbs-bbsd
12    
13  jobs:  jobs:
14    
15    build:    build:
# Line 15  jobs: Line 19  jobs:
19      steps:      steps:
20      - uses: actions/checkout@v4      - uses: actions/checkout@v4
21    
22        - name: Set up QEMU
23          uses: docker/setup-qemu-action@v3
24    
25        - name: Set up Docker Buildx
26          uses: docker/setup-buildx-action@v3
27    
28      - name: Build the Docker image      - name: Build the Docker image
29        run: docker compose build        id: build-bbsd
30          uses: docker/build-push-action@v5
31          with:
32            platforms: ${{ env.DOCKERHUB_PLATFORMS }}
33            context: .
34            file: Dockerfile/dockerfile.bbsd
35            tags: |
36              ${{ env.BBSD_IMAGE }}:dev
37            labels: ${{ steps.meta.outputs.labels }}


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1