2024-02-13 20:08:49 +02:00
|
|
|
name: immich-e2e
|
|
|
|
|
|
|
|
services:
|
|
|
|
immich-server:
|
2024-02-27 21:04:38 +02:00
|
|
|
container_name: immich-e2e-server
|
2024-05-17 15:44:30 +02:00
|
|
|
command: ['./start.sh']
|
|
|
|
image: immich-server:latest
|
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: server/Dockerfile
|
2024-06-26 14:25:09 +02:00
|
|
|
args:
|
|
|
|
- BUILD_ID=1234567890
|
|
|
|
- BUILD_IMAGE=e2e
|
|
|
|
- BUILD_SOURCE_REF=e2e
|
|
|
|
- BUILD_SOURCE_COMMIT=e2eeeeeeeeeeeeeeeeee
|
2024-05-17 15:44:30 +02:00
|
|
|
environment:
|
|
|
|
- DB_HOSTNAME=database
|
|
|
|
- DB_USERNAME=postgres
|
|
|
|
- DB_PASSWORD=postgres
|
|
|
|
- DB_DATABASE_NAME=immich
|
|
|
|
- IMMICH_MACHINE_LEARNING_ENABLED=false
|
|
|
|
- IMMICH_METRICS=true
|
2024-07-01 19:43:16 +02:00
|
|
|
- IMMICH_ENV=testing
|
2024-05-17 15:44:30 +02:00
|
|
|
volumes:
|
|
|
|
- ./test-assets:/test-assets
|
2024-07-11 13:55:00 +02:00
|
|
|
extra_hosts:
|
|
|
|
- 'auth-server:host-gateway'
|
2024-05-17 15:44:30 +02:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
2024-02-13 20:08:49 +02:00
|
|
|
ports:
|
2024-08-30 14:04:02 +02:00
|
|
|
- 2285:3001
|
2024-02-13 20:08:49 +02:00
|
|
|
|
|
|
|
redis:
|
2024-09-09 02:23:51 +02:00
|
|
|
image: redis:6.2-alpine@sha256:2d1463258f2764328496376f5d965f20c6a67f66ea2b06dc42af351f75248792
|
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-08-30 14:04:02 +02:00
|
|
|
- 5435:5432
|