Merge branch 'main' into dependabot/docker_compose/projects/paperless/redis-8.8.0

This commit is contained in:
JG2401
2026-07-17 22:44:29 +02:00
committed by GitHub
8 changed files with 59 additions and 51 deletions

View File

@@ -3,6 +3,11 @@ version: "3.9"
services:
immich-server:
image: ghcr.io/immich-app/immich-server:v2.7.5
deploy:
resources:
limits:
cpus: "1.25"
memory: 2G
labels:
- rclone.storage=storagebox-crypt
volumes:
@@ -36,7 +41,11 @@ services:
immich-machine-learning:
image: ghcr.io/immich-app/immich-machine-learning:v2.7.5
deploy:
resources:
limits:
cpus: "1.75"
memory: 2.5G
volumes:
- immich-model-cache:/cache
environment:
@@ -52,7 +61,11 @@ services:
immich-redis:
image: redis:6.2-alpine
deploy:
resources:
limits:
cpus: "0.25"
memory: 256M
volumes:
- immich-redis-data:/data
healthcheck:
@@ -64,7 +77,11 @@ services:
immich-database:
image: tensorchord/pgvecto-rs:pg14-v0.3.0
deploy:
resources:
limits:
cpus: "0.75"
memory: 1.5G
volumes:
- immich-postgres:/var/lib/postgresql/data
environment:

View File

@@ -2,6 +2,11 @@ version: "3.8"
services:
jellyfin:
image: jellyfin/jellyfin:10
deploy:
resources:
limits:
cpus: "2.0"
memory: 2G
volumes:
- config:/config
- cache:/cache

View File

@@ -1,6 +1,6 @@
services:
n8n:
image: docker.n8n.io/n8nio/n8n:2.17.7
image: docker.n8n.io/n8nio/n8n:2.29.10
restart: always
labels:
- rclone.storage=storagebox-crypt

View File

@@ -1,6 +1,6 @@
services:
nextcloud:
image: nextcloud:33.0.2
image: nextcloud:34.0.1
restart: unless-stopped
labels:
- rclone.storage=storagebox-crypt

View File

@@ -2,6 +2,11 @@ version: '3.8'
services:
paperless:
image: ghcr.io/paperless-ngx/paperless-ngx:2.20.10
deploy:
resources:
limits:
cpus: "1.0"
memory: 1.5G
container_name: paperless
restart: unless-stopped
labels:
@@ -21,6 +26,7 @@ services:
PAPERLESS_ALLOWED_HOSTS: ${PAPERLESS_ALLOWED_HOSTS}
PAPERLESS_DBHOST: ${PAPERLESS_DBHOST}
PAPERLESS_DBPASS: ${PAPERLESS_DBPASS}
PAPERLESS_OCR_OUTPUT_TYPE: ${PAPERLESS_OCR_OUTPUT_TYPE}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000"]
interval: 30s
@@ -31,6 +37,11 @@ services:
redis:
image: redis:8.8.0
deploy:
resources:
limits:
cpus: "0.25"
memory: 256M
container_name: paperless-redis
restart: unless-stopped
volumes:
@@ -41,6 +52,11 @@ services:
db:
container_name: paperless-db
image: postgres:16
deploy:
resources:
limits:
cpus: "0.75"
memory: 1G
restart: unless-stopped
volumes:
- paperlessdb:/var/lib/postgresql/data

View File

@@ -1,6 +1,6 @@
services:
vaultwarden:
image: vaultwarden/server:1.35.8
image: vaultwarden/server:1.36.0
restart: always
environment:
DOMAIN: ${DOMAIN}