mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
a097e903c9
* wip * span class decorator fix typing * improvements * noisy postgres logs formatting * add source * strict string comparison Co-authored-by: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> * remove debug code * execution time histogram * remove prometheus stuff remove prometheus data * disable by default disable nestjs-otel stuff by default update imports * re-add postgres instrumentation formatting formatting * refactor: execution time histogram * decorator alias * formatting * keep original method order in filesystem repo * linting * enable otel sdk in e2e * actually enable otel sdk in e2e * share exclude paths * formatting * fix rebase * more buckets * add example setup * add envs fix actual fix * linting * update comments * update docker env * use more specific env --------- Co-authored-by: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
version: '3.8'
|
|
|
|
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
|
|
- REDIS_HOSTNAME=redis
|
|
- IMMICH_MACHINE_LEARNING_ENABLED=false
|
|
- IMMICH_METRICS=true
|
|
volumes:
|
|
- upload:/usr/src/app/upload
|
|
- ../server/test/assets:/data/assets
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
|
|
services:
|
|
immich-server:
|
|
container_name: immich-e2e-server
|
|
command: ['./start.sh', 'immich']
|
|
<<: *server-common
|
|
ports:
|
|
- 2283:3001
|
|
|
|
immich-microservices:
|
|
container_name: immich-e2e-microservices
|
|
command: ['./start.sh', 'microservices']
|
|
<<: *server-common
|
|
|
|
redis:
|
|
image: redis:6.2-alpine@sha256:51d6c56749a4243096327e3fb964a48ed92254357108449cb6e23999c37773c5
|
|
|
|
database:
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
|
command: -c fsync=off -c shared_preload_libraries=vectors.so
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: immich
|
|
ports:
|
|
- 5433:5432
|
|
|
|
volumes:
|
|
model-cache:
|
|
upload:
|