5 Commits

Author SHA1 Message Date
e8e9592e76 chore: publish 0.1.2+v1.131.3 release 2025-04-21 11:59:05 +02:00
53c6d41ebc set image version 2025-04-21 11:57:58 +02:00
62bbd49826 Update .drone.yml 2025-01-08 10:09:13 -08:00
8d386da7b7 chore: add doc for external volume 2024-12-28 23:26:15 +01:00
faf4707535 fix: ml container cannot be reached 2024-12-28 23:25:59 +01:00
4 changed files with 21 additions and 10 deletions

View File

@ -32,7 +32,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -17,9 +17,6 @@ DB_DATA_LOCATION=./postgres
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# TZ=Etc/UTC
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release
# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=postgres

View File

@ -22,3 +22,17 @@
* `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).
## Volume
You can manually create a volume that has more storage for the library. For example samba: https://docs.docker.com/engine/storage/volumes/#create-cifssamba-volumes
```
docker volume create \
--driver local \
--opt type=cifs \
--opt device=//uxxxxx.your-server.de/backup \
--opt o=addr=uxxxxx.your-server.de,username=uxxxxxxx,password=*****,file_mode=0777,dir_mode=0777 \
--name immich_example_com_uploads
```

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
image: ghcr.io/immich-app/immich-server:v1.131.3
volumes:
- uploads:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
@ -27,11 +27,11 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.1.1+release"
- "coop-cloud.${STACK_NAME}.version=0.1.2+v1.131.3"
machine-learning:
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
immich-machine-learning: # TODO: this has to be that name, as the frontend tries to reach it at: http://immich-machine-learning:3003
image: ghcr.io/immich-app/immich-machine-learning:v1.131.3
ports:
- 3003:3003
volumes:
@ -47,7 +47,7 @@ services:
networks:
- backend
database:
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
image: tensorchord/pgvecto-rs:pg14-v0.2.0
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
@ -66,4 +66,4 @@ networks:
volumes:
uploads:
postgres:
model-cache:
model-cache: