更新文档独立部署的 docker compose || Update the document for independent deployment of docker compose #2083
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '[docker] CI for test' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
path-context: | |
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: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build alpine | |
uses: docker/build-push-action@v5 | |
with: | |
file: ./packages/server/Dockerfile.alpine | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max | |
- name: Build debian | |
uses: docker/build-push-action@v5 | |
with: | |
file: ./packages/server/Dockerfile | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max |