mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07: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>
34 lines
879 B
YAML
34 lines
879 B
YAML
version: '3.8'
|
|
|
|
name: 'immich-test-e2e'
|
|
|
|
services:
|
|
immich-server:
|
|
image: immich-server-dev:latest
|
|
build:
|
|
context: ../../
|
|
dockerfile: server/Dockerfile
|
|
target: dev
|
|
command: ['/usr/src/app/bin/immich-test', 'jobs']
|
|
volumes:
|
|
- /usr/src/app/node_modules
|
|
- ../test/assets:/usr/src/app/test/assets:ro
|
|
environment:
|
|
- DB_HOSTNAME=database
|
|
- DB_USERNAME=postgres
|
|
- DB_PASSWORD=postgres
|
|
- DB_DATABASE_NAME=e2e_test
|
|
- IMMICH_METRICS=true
|
|
depends_on:
|
|
- database
|
|
|
|
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: e2e_test
|
|
logging:
|
|
driver: none
|