Skip to content

Update Docker instructions #5

Update Docker instructions

Update Docker instructions #5

Workflow file for this run

name: Docker images
on:
push:
branches: [main]
pull_request:
branches: [main]
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Get version tag
id: get_tag
run: |
if [ ${{ startsWith(github.ref, 'refs/tags/') }} = true ]; then
echo "tag=latest,${GITHUB_REF:10}" >>$GITHUB_OUTPUT
else
echo "tag=latest" >>$GITHUB_OUTPUT
fi
- name: Build and Publish bbox-server-qgis
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: sourcepole/bbox-server-qgis
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
buildoptions: "--target qgis-server"
tags: "${{ steps.get_tag.outputs.tag }}"
dockerfile: docker/Dockerfile-qgis-server
- name: Build and Publish bbox-qgis-server
uses: elgohr/Publish-Docker-Github-Action@v5
env:
BUILD_DIR: bbox-map-server
with:
name: sourcepole/bbox-qgis-server
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
buildargs: BUILD_DIR
tags: "${{ steps.get_tag.outputs.tag }}"
dockerfile: docker/Dockerfile-qgis-server