Deployment #3933
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 | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
build-docker-images: | |
name: Build docker images | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [server, swr-queue-worker] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build the ${{ matrix.image }} image | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
load: true | |
file: packages/server/Dockerfile | |
build-args: | | |
image=${{ matrix.image }} | |
tags: api-${{ matrix.image }}-local-build:latest | |
- uses: serlo/configure-repositories/actions/setup-node@main | |
- name: Start containers | |
run: yarn start:containers | |
- name: Wait until all containers are ready | |
run: sleep 30 | |
- name: Run the ${{ matrix.image }} docker image | |
run: yarn docker:run:${{ matrix.image }} | |
- name: Wait a little bit until the container was started | |
run: sleep 15 | |
- name: Let's see if it is running | |
run: docker logs api-${{ matrix.image }}-from-local-build | |
- name: Test the docker container ${{ matrix.image }} | |
run: yarn test:docker:${{ matrix.image }} |