update versions
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 49s

This commit is contained in:
2025-12-06 17:40:22 -03:00
parent f1f4c0f67f
commit 7cf8000ec6
5 changed files with 12 additions and 8 deletions

1
ghostfolio-importer Submodule

Submodule ghostfolio-importer added at 0680f22e4d

View File

@@ -53,4 +53,3 @@ services:
- ./runner/config.yaml:/config.yaml - ./runner/config.yaml:/config.yaml
- ./runner/data:/data - ./runner/data:/data
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock

View File

@@ -6,5 +6,4 @@ scrape_configs:
- targets: - targets:
- 192.168.1.202:9100 - 192.168.1.202:9100
- 192.168.1.201:9100 - 192.168.1.201:9100
- 192.168.1.204:9100
- 85.209.92.53:9100 - 85.209.92.53:9100

View File

@@ -4,7 +4,7 @@
UPLOAD_LOCATION=/mnt/immich-library UPLOAD_LOCATION=/mnt/immich-library
# The Immich version to use. You can pin this to a specific version like "v1.71.0" # The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=v2.2.3 IMMICH_VERSION=v2.3.1
# Connection secret for postgres. You should change it to a random password # Connection secret for postgres. You should change it to a random password
DB_PASSWORD=asdf1234 DB_PASSWORD=asdf1234
@@ -14,5 +14,6 @@ DB_PASSWORD=asdf1234
DB_HOSTNAME=immich_postgres DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres DB_USERNAME=postgres
DB_DATABASE_NAME=immich DB_DATABASE_NAME=immich
DB_DATA_LOCATION=./pgdata
REDIS_HOSTNAME=immich_redis REDIS_HOSTNAME=immich_redis

View File

@@ -29,23 +29,27 @@ services:
redis: redis:
container_name: immich_redis container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1 image: docker.io/valkey/valkey:8@sha256:81db6d39e1bba3b3ff32bd3a1b19a6d69690f94a3954ec131277b9a26b95b3aa
healthcheck: healthcheck:
test: redis-cli ping || exit 1 test: redis-cli ping || exit 1
restart: unless-stopped restart: unless-stopped
database: database:
container_name: immich_postgres container_name: immich_postgres
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:bcf63357191b76a916ae5eb93464d65c07511da41e3bf7a8416db519b40b1c23
env_file: env_file:
- .env - .env
environment: environment:
POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME} POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
# DB_STORAGE_TYPE: 'HDD'
volumes: volumes:
- ./pgdata:/var/lib/postgresql/data - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
- ./dump:/dump
restart: unless-stopped restart: unless-stopped
shm_size: 128mb
networks: networks:
caddy-net: caddy-net: