2024-02-29 18:26:55 +02:00
|
|
|
version: '3.8'
|
2024-02-13 20:08:49 +02:00
|
|
|
|
|
|
|
name: immich-e2e
|
|
|
|
|
|
|
|
x-server-build: &server-common
|
|
|
|
image: immich-server:latest
|
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: server/Dockerfile
|
|
|
|
environment:
|
|
|
|
- DB_HOSTNAME=database
|
|
|
|
- DB_USERNAME=postgres
|
|
|
|
- DB_PASSWORD=postgres
|
|
|
|
- DB_DATABASE_NAME=immich
|
2024-02-20 00:25:57 +02:00
|
|
|
- IMMICH_MACHINE_LEARNING_ENABLED=false
|
2024-03-12 07:19:12 +02:00
|
|
|
- IMMICH_METRICS=true
|
2024-02-13 20:08:49 +02:00
|
|
|
volumes:
|
|
|
|
- upload:/usr/src/app/upload
|
2024-05-08 05:33:17 +02:00
|
|
|
- ./test-assets:/test-assets
|
2024-02-13 20:08:49 +02:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
|
|
|
|
|
|
|
services:
|
|
|
|
immich-server:
|
2024-02-27 21:04:38 +02:00
|
|
|
container_name: immich-e2e-server
|
2024-02-29 18:26:55 +02:00
|
|
|
command: ['./start.sh', 'immich']
|
2024-02-13 20:08:49 +02:00
|
|
|
<<: *server-common
|
|
|
|
ports:
|
|
|
|
- 2283:3001
|
|
|
|
|
2024-02-27 21:04:38 +02:00
|
|
|
immich-microservices:
|
|
|
|
container_name: immich-e2e-microservices
|
2024-02-29 18:26:55 +02:00
|
|
|
command: ['./start.sh', 'microservices']
|
2024-02-27 21:04:38 +02:00
|
|
|
<<: *server-common
|
2024-02-13 20:08:49 +02:00
|
|
|
|
|
|
|
redis:
|
2024-04-19 12:46:59 +02:00
|
|
|
image: redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672
|
2024-02-13 20:08:49 +02:00
|
|
|
|
|
|
|
database:
|
|
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
2024-02-19 19:03:51 +02:00
|
|
|
command: -c fsync=off -c shared_preload_libraries=vectors.so
|
2024-02-13 20:08:49 +02:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: immich
|
|
|
|
ports:
|
2024-02-19 19:03:51 +02:00
|
|
|
- 5433:5432
|
2024-02-13 20:08:49 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
model-cache:
|
|
|
|
upload:
|