18 Commits

Author SHA1 Message Date
d20e312c92 Merge pull request 'Update grafana/alloy Docker tag to v1.13.0' (#265) from renovate/grafana-alloy-1.x into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/265
2026-02-08 08:46:12 +00:00
d6c67bfe14 Merge pull request 'Update Immich to v2.5.5' (#266) from renovate/immich into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/266
2026-02-08 08:46:02 +00:00
Renovate Bot
9ef370d983 Update Immich to v2.5.5 2026-02-07 00:02:59 +00:00
Renovate Bot
310b0c9534 Update grafana/alloy Docker tag to v1.13.0 2026-02-06 00:02:36 +00:00
f4863e897f Merge pull request 'Update Immich to v2.5.3' (#264) from renovate/immich into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/264
2026-02-04 06:38:28 +00:00
Renovate Bot
aec019fff2 Update Immich to v2.5.3 2026-02-04 00:02:29 +00:00
746b8b419c Merge pull request 'Update Paperless-ngx' (#260) from renovate/paperless-ngx into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/260
2026-02-03 07:38:49 +00:00
c47117d3a6 Merge pull request 'Update ghcr.io/neptunehub/audiomuse-ai Docker tag to v0.8.8' (#263) from renovate/ghcr.io-neptunehub-audiomuse-ai-0.x into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/263
2026-02-03 07:38:40 +00:00
573caeaa42 Merge pull request 'Update Matrix' (#262) from renovate/matrix into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/262
2026-02-03 07:38:21 +00:00
Renovate Bot
2bd74c9f8c Update ghcr.io/neptunehub/audiomuse-ai Docker tag to v0.8.8 2026-02-03 00:02:43 +00:00
Peter Smit
72fd259006 Update immich and add TZ env var 2026-02-02 12:04:11 +01:00
Renovate Bot
ed43046811 Update Paperless-ngx 2026-02-01 00:02:04 +00:00
Renovate Bot
eaa996f117 Update Matrix 2026-01-29 00:02:12 +00:00
Peter Smit
6bb1159d85 Mount external library for immich 2026-01-25 14:33:14 +01:00
bc10065147 Merge pull request 'Update ghcr.io/paperless-ngx/paperless-ngx Docker tag to v2.20.5' (#257) from renovate/paperless-ngx into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/257
2026-01-24 18:21:25 +00:00
485c17ab9f Merge pull request 'Update ghcr.io/neptunehub/audiomuse-ai Docker tag to v0.8.7' (#256) from renovate/ghcr.io-neptunehub-audiomuse-ai-0.x into master
Reviewed-on: https://git.smittenfeld.nl/peter/homelab-docker-config/pulls/256
2026-01-24 18:21:23 +00:00
Renovate Bot
499aa614f4 Update ghcr.io/paperless-ngx/paperless-ngx Docker tag to v2.20.5 2026-01-20 00:01:53 +00:00
Renovate Bot
78547623b5 Update ghcr.io/neptunehub/audiomuse-ai Docker tag to v0.8.7 2026-01-20 00:01:47 +00:00
6 changed files with 15 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ services:
# AudioMuse-AI Flask application service # AudioMuse-AI Flask application service
audiomuse-ai-flask: audiomuse-ai-flask:
image: ghcr.io/neptunehub/audiomuse-ai:0.8.6 # Reflects deployment.yaml image: ghcr.io/neptunehub/audiomuse-ai:0.8.8 # Reflects deployment.yaml
container_name: audiomuse-ai-flask-app container_name: audiomuse-ai-flask-app
ports: ports:
- "8013:8000" - "8013:8000"
@@ -69,7 +69,7 @@ services:
# AudioMuse-AI RQ Worker service # AudioMuse-AI RQ Worker service
audiomuse-ai-worker: audiomuse-ai-worker:
image: ghcr.io/neptunehub/audiomuse-ai:0.8.6 # Reflects deployment.yaml image: ghcr.io/neptunehub/audiomuse-ai:0.8.8 # Reflects deployment.yaml
container_name: audiomuse-ai-worker-instance container_name: audiomuse-ai-worker-instance
env_file: env_file:
- .env - .env

View File

@@ -8,3 +8,8 @@ IMMICH_POSTGRES_USER=
IMMICH_POSTGRES_PASSWORD= IMMICH_POSTGRES_PASSWORD=
REDIS_HOSTNAME= REDIS_HOSTNAME=
IMMICH_EXTERNAL_MEDIA_LOCATION=
# Default timezone for images without a timezone set
TZ=

View File

@@ -1,13 +1,13 @@
services: services:
immich-server: immich-server:
container_name: immich_server container_name: immich_server
image: ghcr.io/immich-app/immich-server:v2.4.1 image: ghcr.io/immich-app/immich-server:v2.5.5
# extends: # extends:
# file: hwaccel.transcoding.yml # file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes: volumes:
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
- ${UPLOAD_LOCATION}:/data - ${UPLOAD_LOCATION}:/data
- ${IMMICH_EXTERNAL_MEDIA_LOCATION}:/external:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
env_file: env_file:
- .env - .env
@@ -25,7 +25,7 @@ services:
immich-machine-learning: immich-machine-learning:
container_name: immich_machine_learning container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:v2.4.1 image: ghcr.io/immich-app/immich-machine-learning:v2.5.5
volumes: volumes:
- model-cache:/cache - model-cache:/cache
env_file: env_file:

View File

@@ -53,7 +53,7 @@ services:
- '-target=all' - '-target=all'
alloy: alloy:
image: grafana/alloy:v1.12.2 image: grafana/alloy:v1.13.0
restart: unless-stopped restart: unless-stopped
ports: ports:
- "12345:12345" - "12345:12345"

View File

@@ -18,7 +18,7 @@ services:
- 5434:5432 - 5434:5432
paperless: paperless:
image: ghcr.io/paperless-ngx/paperless-ngx:2.20.4 image: ghcr.io/paperless-ngx/paperless-ngx:2.20.6
restart: always restart: always
depends_on: depends_on:
- db - db
@@ -49,7 +49,7 @@ services:
PAPERLESS_REDIRECT_LOGIN_TO_SSO: true PAPERLESS_REDIRECT_LOGIN_TO_SSO: true
gotenberg: gotenberg:
image: docker.io/gotenberg/gotenberg:8.25.1 image: docker.io/gotenberg/gotenberg:8.26.0
restart: always restart: always
# The gotenberg chromium route is used to convert .eml files. We do not # The gotenberg chromium route is used to convert .eml files. We do not

View File

@@ -61,7 +61,7 @@ services:
ports: ports:
- 5440:5432 - 5440:5432
mas: mas:
image: ghcr.io/element-hq/matrix-authentication-service:1.9.0 image: ghcr.io/element-hq/matrix-authentication-service:1.10.0
restart: always restart: always
working_dir: /config working_dir: /config
volumes: volumes:
@@ -97,7 +97,7 @@ services:
- 5442:5432 - 5442:5432
synapse: synapse:
container_name: synapse container_name: synapse
image: matrixdotorg/synapse:v1.145.0 image: matrixdotorg/synapse:v1.146.0
restart: always restart: always
volumes: volumes:
- ${SYNAPSE_CONFIG_DIR}:/data - ${SYNAPSE_CONFIG_DIR}:/data