update deploy #240
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-compose-actions-workflow | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "v*" | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- dockerfile: ./compose/local/django/Dockerfile | |
image: ghcr.io/LDO-CERT/orochi/orochi_django | |
- dockerfile: ./compose/local/postgres/Dockerfile | |
image: ghcr.io/LDO-CERT/orochi/orochi_postgres | |
- dockerfile: ./compose/local/dask/Dockerfile | |
image: ghcr.io/LDO-CERT/orochi/orochi_worker | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build the stack | |
run: | | |
export DOCKER_BUILDKIT=0 | |
export COMPOSE_DOCKER_CLI_BUILD=0 | |
docker-compose build | |
- name: start containers | |
run: docker-compose up -d | |
- name: show container and networks | |
run: docker network ls && docker ps -a | |
- name: run pytest | |
run: docker-compose run django pytest | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ matrix.image }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ${{ matrix.dockerfile }} | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Stop containers | |
if: always() | |
run: docker-compose down |