Publish docker image #1
Workflow file for this run
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: Publish docker image | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
# todo: Replace with `torrust/torrust-tracker` in the final version | |
DOCKER_IMAGE: josecelano/torrust-tracker | |
# Azure file share volume mount requires the Linux container run as root | |
# https://learn.microsoft.com/en-us/azure/container-instances/container-instances-volume-azure-files#limitations | |
TORRUST_TRACKER_RUN_AS_USER: root | |
jobs: | |
dockerhub: | |
runs-on: ubuntu-latest | |
environment: dockerhub-josecelano | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ env.DOCKER_IMAGE }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./Dockerfile | |
build-args: | | |
RUN_AS_USER=${{ env.TORRUST_TRACKER_RUN_AS_USER }} | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |