chore(deps): update immich to v1.140.1 (#1538)
This commit is contained in:
parent
03fae8330b
commit
42f93e0c9d
|
|
@ -0,0 +1,71 @@
|
|||
name: Build Docker image
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
github-server-url:
|
||||
description: 'GitHub Server URL'
|
||||
required: false
|
||||
type: string
|
||||
default: 'https://github.com'
|
||||
|
||||
repo:
|
||||
description: '仓库名称'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
ref:
|
||||
description: '分支名称'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
image_name:
|
||||
description: '镜像名称'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
image_tag:
|
||||
description: '镜像标签'
|
||||
required: false
|
||||
default: 'latest'
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
publish-docker:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
fetch-tags: true
|
||||
github-server-url: ${{ github.event.inputs.github-server-url }}
|
||||
|
||||
- name: GET lowercase repository owner
|
||||
id: lowercase
|
||||
run: echo "owner=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ steps.lowercase.outputs.owner }}
|
||||
password: ${{ github.token }}
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ghcr.io/${{ steps.lowercase.outputs.owner }}/${{ github.event.inputs.image_name }}:${{ github.event.inputs.image_tag }}
|
||||
platforms: linux/amd64, linux/arm64, linux/arm/v7
|
||||
|
|
@ -6,7 +6,7 @@ name: immich-machine-learning
|
|||
|
||||
services:
|
||||
immich-machine-learning:
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.140.0
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.140.1
|
||||
container_name: immich-machine-learning-${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
|
@ -8,7 +8,7 @@ services:
|
|||
immich-server:
|
||||
depends_on:
|
||||
- immich-pg14-vectors
|
||||
image: ghcr.io/immich-app/immich-server:v1.140.0
|
||||
image: ghcr.io/immich-app/immich-server:v1.140.1
|
||||
container_name: immich-server-${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
|
@ -6,7 +6,7 @@ name: immich-server
|
|||
|
||||
services:
|
||||
immich-server:
|
||||
image: ghcr.io/immich-app/immich-server:v1.140.0
|
||||
image: ghcr.io/immich-app/immich-server:v1.140.1
|
||||
container_name: immich-server-${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
|
@ -29,7 +29,7 @@ services:
|
|||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
image: altran1502/immich-machine-learning:v1.140.0
|
||||
image: altran1502/immich-machine-learning:v1.140.1
|
||||
volumes:
|
||||
- ${CACHE_PATH}:/cache
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Reference in New Issue