mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
b59abdff3d
chore: dont check immich folder
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: immich-e2e
|
|
|
|
services:
|
|
immich-server:
|
|
container_name: immich-e2e-server
|
|
command: ['./start.sh']
|
|
image: immich-server:latest
|
|
build:
|
|
context: ../
|
|
dockerfile: server/Dockerfile
|
|
args:
|
|
- BUILD_ID=1234567890
|
|
- BUILD_IMAGE=e2e
|
|
- BUILD_SOURCE_REF=e2e
|
|
- BUILD_SOURCE_COMMIT=e2eeeeeeeeeeeeeeeeee
|
|
environment:
|
|
- DB_HOSTNAME=database
|
|
- DB_USERNAME=postgres
|
|
- DB_PASSWORD=postgres
|
|
- DB_DATABASE_NAME=immich
|
|
- IMMICH_MACHINE_LEARNING_ENABLED=false
|
|
- IMMICH_METRICS=true
|
|
- IMMICH_ENV=testing
|
|
- IMMICH_PORT=2285
|
|
- IMMICH_IGNORE_MOUNT_CHECK_ERRORS=true
|
|
volumes:
|
|
- ./test-assets:/test-assets
|
|
extra_hosts:
|
|
- 'auth-server:host-gateway'
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
ports:
|
|
- 2285:2285
|
|
|
|
redis:
|
|
image: redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
|
|
|
|
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:
|
|
- 5435:5432
|