Skip to content

Added docker workflow file #24

Added docker workflow file

Added docker workflow file #24

Workflow file for this run

name: Docker build and export
on:
push:
branches:
- "master"
pull_request:
env:
WEB_TEST_IMAGE: dbase-web:test
WEB_IMAGE: gafderkspersonal/dbase-web
NGINX_TEST_IMAGE: dbase-nginx:test
NGINX_IMAGE: gafderkspersonal/dbase-nginx
jobs:
build:
environment: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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: Set short git commit SHA
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Output git commit SHA
run: echo ${{ steps.vars.outputs.sha_short }}
- name: Build web test image
uses: docker/build-push-action@v5
with:
target: web-test
context: .
load: true
tags: ${{ env.WEB_TEST_IMAGE }}
- name: Test web test image
run: |
docker run \
-e SECRET_KEY="${{ secrets.SECRET_KEY }}" \
-e DATABASE_URL="sqlite:////app/db.sqlite3" \
-e DEBUG=on \
--rm ${{ env.WEB_TEST_IMAGE }} \
python manage.py test --exclude-tag=functional -v 2
- name: Build nginx image
uses: docker/build-push-action@v5
with:
target: nginx
context: .
load: true
tags: ${{ env.NGINX_TEST_IMAGE }}
- name: Publish web image
uses: docker/build-push-action@v5
with:
context: .
push: true
target: runtime
tags: ${{ env.WEB_IMAGE }}:latest,${{ env.WEB_IMAGE }}:${{ steps.vars.outputs.sha_short }}
if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request'
- name: Publish nginx image
uses: docker/build-push-action@v5
with:
context: .
push: true
target: nginx
tags: ${{ env.NGINX_IMAGE }}:latest,${{ env.NGINX_IMAGE }}:${{ steps.vars.outputs.sha_short }}
if: github.ref == 'refs/heads/master' && github.event_name != 'pull_request'