Docker Compose Build Latest Main Image Tag (Manual Dispatch) #8
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: | ||
branches: | ||
- '**' # Trigger the workflow on push events to all branches | ||
workflow_dispatch: # Allows manual triggering of the workflow | ||
release: | ||
types: [published] # Triggers the workflow when a release is published | ||
jobs: | ||
push_to_registry: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
- run: | | ||
echo "Current branch: ${{ github.ref_name }}" | ||
echo "Docker username: ${{ secrets.DOCKER_USERNAME }}" | ||
env | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: spammenotinoz/librechat | ||
tags: | | ||
type=raw,value=latest | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=semver,pattern={{major}} | ||
- # Set up QEMU | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
# Set up Docker Buildx | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
# Log in to GitHub Container Registry | ||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
# Login to Docker Hub | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# Prepare the environment | ||
- name: Prepare environment | ||
run: | | ||
cp .env.example .env | ||
# Build and push Docker images for each target | ||
- name: Build and push Docker images | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ${{ matrix.file }} | ||
push: true | ||
tags: | | ||
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest} | ||
${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.image_name }}:latest | ||
platforms: linux/amd64,linux/arm64 | ||
target: ${{ matrix.target }} |