2023-01-21 17:38:27 +02:00
|
|
|
name: Build and Push Docker Images
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
2023-02-19 18:44:53 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-04-12 22:52:01 +02:00
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
|
2023-01-21 17:38:27 +02:00
|
|
|
jobs:
|
|
|
|
build_and_push:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
# Prevent a failure in one image from stopping the other builds
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- context: "web"
|
|
|
|
image: "immich-web"
|
2023-08-02 23:40:27 +02:00
|
|
|
platforms: "linux/amd64,linux/arm64"
|
2023-01-21 17:38:27 +02:00
|
|
|
- context: "machine-learning"
|
|
|
|
image: "immich-machine-learning"
|
2023-02-26 23:00:09 +02:00
|
|
|
platforms: "linux/amd64,linux/arm64"
|
2023-01-21 17:38:27 +02:00
|
|
|
- context: "nginx"
|
|
|
|
image: "immich-proxy"
|
2023-08-02 23:40:27 +02:00
|
|
|
platforms: "linux/amd64,linux/arm64"
|
2023-02-18 17:13:37 +02:00
|
|
|
|
2023-01-21 17:38:27 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-06 03:50:22 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-01-21 17:38:27 +02:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
2023-06-08 15:40:27 +02:00
|
|
|
uses: docker/setup-qemu-action@v2.2.0
|
2023-01-21 17:38:27 +02:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-08-28 13:25:14 +02:00
|
|
|
uses: docker/setup-buildx-action@v2.10.0
|
2023-01-21 17:38:27 +02:00
|
|
|
# Workaround to fix error:
|
|
|
|
# failed to push: failed to copy: io: read/write on closed pipe
|
|
|
|
# See https://github.com/docker/build-push-action/issues/761
|
|
|
|
with:
|
|
|
|
driver-opts: |
|
|
|
|
image=moby/buildkit:v0.10.6
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
# Only push to Docker Hub when making a release
|
|
|
|
if: ${{ github.event_name == 'release' }}
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2023-02-18 17:13:37 +02:00
|
|
|
|
2023-01-21 17:38:27 +02:00
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v2
|
2023-08-03 06:27:38 +02:00
|
|
|
# Skip when PR from a fork
|
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Generate docker image tags
|
|
|
|
id: metadata
|
2023-09-12 14:15:16 +02:00
|
|
|
uses: docker/metadata-action@v5
|
2023-08-03 06:27:38 +02:00
|
|
|
with:
|
|
|
|
flavor: |
|
|
|
|
# Disable latest tag
|
|
|
|
latest=false
|
|
|
|
images: |
|
|
|
|
name=ghcr.io/${{ github.repository_owner }}/${{matrix.image}}
|
|
|
|
name=altran1502/${{matrix.image}},enable=${{ github.event_name == 'release' }}
|
|
|
|
tags: |
|
|
|
|
# Tag with branch name
|
|
|
|
type=ref,event=branch
|
|
|
|
# Tag with pr-number
|
|
|
|
type=ref,event=pr
|
|
|
|
# Tag with git tag on release
|
|
|
|
type=ref,event=tag
|
|
|
|
type=raw,value=release,enable=${{ github.event_name == 'release' }}
|
|
|
|
|
|
|
|
- name: Determine build cache output
|
|
|
|
id: cache-target
|
|
|
|
run: |
|
|
|
|
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
|
|
|
# Essentially just ignore the cache output (PR can't write to registry cache)
|
|
|
|
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
echo "cache-to=type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{ matrix.image }}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Build and push image
|
2023-09-11 13:38:30 +02:00
|
|
|
uses: docker/build-push-action@v4.2.1
|
2023-08-03 06:27:38 +02:00
|
|
|
with:
|
|
|
|
context: ${{ matrix.context }}
|
|
|
|
platforms: ${{ matrix.platforms }}
|
|
|
|
# Skip pushing when PR from a fork
|
|
|
|
push: ${{ !github.event.pull_request.head.repo.fork }}
|
|
|
|
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{matrix.image}}
|
|
|
|
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
|
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
|
|
|
labels: ${{ steps.metadata.outputs.labels }}
|
|
|
|
|
|
|
|
build_and_push_server_arm_64:
|
|
|
|
runs-on: self-hosted
|
|
|
|
strategy:
|
|
|
|
# Prevent a failure in one image from stopping the other builds
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- context: "server"
|
|
|
|
image: "immich-server"
|
2023-08-07 04:52:40 +02:00
|
|
|
platforms: "linux/arm64,linux/amd64"
|
2023-08-03 06:27:38 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-06 03:50:22 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-08-03 06:27:38 +02:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2.2.0
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-08-28 13:25:14 +02:00
|
|
|
uses: docker/setup-buildx-action@v2.10.0
|
2023-08-03 06:27:38 +02:00
|
|
|
# Workaround to fix error:
|
|
|
|
# failed to push: failed to copy: io: read/write on closed pipe
|
|
|
|
# See https://github.com/docker/build-push-action/issues/761
|
|
|
|
with:
|
|
|
|
driver-opts: |
|
|
|
|
image=moby/buildkit:v0.10.6
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
# Only push to Docker Hub when making a release
|
|
|
|
if: ${{ github.event_name == 'release' }}
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v2
|
2023-01-21 17:38:27 +02:00
|
|
|
# Skip when PR from a fork
|
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Generate docker image tags
|
|
|
|
id: metadata
|
2023-09-12 14:15:16 +02:00
|
|
|
uses: docker/metadata-action@v5
|
2023-01-21 17:38:27 +02:00
|
|
|
with:
|
|
|
|
flavor: |
|
|
|
|
# Disable latest tag
|
|
|
|
latest=false
|
|
|
|
images: |
|
|
|
|
name=ghcr.io/${{ github.repository_owner }}/${{matrix.image}}
|
|
|
|
name=altran1502/${{matrix.image}},enable=${{ github.event_name == 'release' }}
|
|
|
|
tags: |
|
|
|
|
# Tag with branch name
|
|
|
|
type=ref,event=branch
|
|
|
|
# Tag with pr-number
|
|
|
|
type=ref,event=pr
|
|
|
|
# Tag with git tag on release
|
|
|
|
type=ref,event=tag
|
|
|
|
type=raw,value=release,enable=${{ github.event_name == 'release' }}
|
|
|
|
|
2023-01-26 21:22:46 +02:00
|
|
|
- name: Determine build cache output
|
|
|
|
id: cache-target
|
|
|
|
run: |
|
|
|
|
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
|
|
|
# Essentially just ignore the cache output (PR can't write to registry cache)
|
|
|
|
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
echo "cache-to=type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{ matrix.image }}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
|
|
|
|
2023-01-21 17:38:27 +02:00
|
|
|
- name: Build and push image
|
2023-09-11 13:38:30 +02:00
|
|
|
uses: docker/build-push-action@v4.2.1
|
2023-01-21 17:38:27 +02:00
|
|
|
with:
|
|
|
|
context: ${{ matrix.context }}
|
2023-02-18 21:15:23 +02:00
|
|
|
platforms: ${{ matrix.platforms }}
|
2023-01-21 17:38:27 +02:00
|
|
|
# Skip pushing when PR from a fork
|
|
|
|
push: ${{ !github.event.pull_request.head.repo.fork }}
|
2023-01-26 21:22:46 +02:00
|
|
|
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{matrix.image}}
|
|
|
|
cache-to: ${{ steps.cache-target.outputs.cache-to }}
|
|
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
2023-02-03 22:22:00 +02:00
|
|
|
labels: ${{ steps.metadata.outputs.labels }}
|