mirror of
https://github.com/immich-app/immich.git
synced 2026-02-21 22:30:36 +09:00
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docker / pre-job (push) Has been cancelled
Docker / Re-Tag ML () (push) Has been cancelled
Docker / Re-Tag ML (-armnn) (push) Has been cancelled
Docker / Re-Tag ML (-cuda) (push) Has been cancelled
Docker / Re-Tag ML (-openvino) (push) Has been cancelled
Docker / Re-Tag ML (-rknn) (push) Has been cancelled
Docker / Re-Tag ML (-rocm) (push) Has been cancelled
Docker / Re-Tag Server () (push) Has been cancelled
Docker / Build and Push ML (armnn, linux/arm64, -armnn) (push) Has been cancelled
Docker / Build and Push ML (cpu) (push) Has been cancelled
Docker / Build and Push ML (cuda, linux/amd64, -cuda) (push) Has been cancelled
Docker / Build and Push ML (openvino, linux/amd64, -openvino) (push) Has been cancelled
Docker / Build and Push ML (rknn, linux/arm64, -rknn) (push) Has been cancelled
Docker / Build and Push ML (rocm, linux/amd64, {"linux/amd64": "pokedex-giant"}, -rocm) (push) Has been cancelled
Docker / Build and Push Server (push) Has been cancelled
Docker / Docker Build & Push Server Success (push) Has been cancelled
Docker / Docker Build & Push ML Success (push) Has been cancelled
Docs build / pre-job (push) Has been cancelled
Docs build / Docs Build (push) Has been cancelled
Zizmor / Zizmor (push) Has been cancelled
Manage release PR / bump (push) Has been cancelled
Static Code Analysis / pre-job (push) Has been cancelled
Static Code Analysis / Run Dart Code Analysis (push) Has been cancelled
Test / pre-job (push) Has been cancelled
Test / Test & Lint Server (push) Has been cancelled
Test / Unit Test CLI (push) Has been cancelled
Test / Unit Test CLI (Windows) (push) Has been cancelled
Test / Lint Web (push) Has been cancelled
Test / Test Web (push) Has been cancelled
Test / Test i18n (push) Has been cancelled
Test / End-to-End Lint (push) Has been cancelled
Test / Medium Tests (Server) (push) Has been cancelled
Test / End-to-End Tests (Server & CLI) (ubuntu-24.04-arm) (push) Has been cancelled
Test / End-to-End Tests (Server & CLI) (ubuntu-latest) (push) Has been cancelled
Test / End-to-End Tests (Web) (ubuntu-24.04-arm) (push) Has been cancelled
Test / End-to-End Tests (Web) (ubuntu-latest) (push) Has been cancelled
Test / End-to-End Tests Success (push) Has been cancelled
Test / Unit Test Mobile (push) Has been cancelled
Test / Unit Test ML (push) Has been cancelled
Test / .github Files Formatting (push) Has been cancelled
Test / ShellCheck (push) Has been cancelled
Test / OpenAPI Clients (push) Has been cancelled
Test / SQL Schema Checks (push) Has been cancelled
99 lines
2.3 KiB
YAML
99 lines
2.3 KiB
YAML
name: immich-e2e
|
|
|
|
services:
|
|
immich-app-base:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: immich-app-base
|
|
|
|
immich-init:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: immich-init
|
|
container_name: immich-e2e-init
|
|
|
|
immich-server:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: immich-server
|
|
container_name: immich-e2e-server
|
|
ports: !reset []
|
|
env_file: !reset []
|
|
environment:
|
|
DB_HOSTNAME: database
|
|
DB_USERNAME: postgres
|
|
DB_PASSWORD: postgres
|
|
DB_DATABASE_NAME: immich
|
|
IMMICH_MACHINE_LEARNING_ENABLED: 'false'
|
|
IMMICH_TELEMETRY_INCLUDE: all
|
|
IMMICH_ENV: testing
|
|
IMMICH_PORT: '2285'
|
|
IMMICH_IGNORE_MOUNT_CHECK_ERRORS: 'true'
|
|
volumes:
|
|
- ./test-assets:/test-assets
|
|
depends_on:
|
|
immich-init:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_started
|
|
database:
|
|
condition: service_healthy
|
|
|
|
immich-web:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: immich-web
|
|
container_name: immich-e2e-web
|
|
ports: !override
|
|
- 2285:3000
|
|
environment:
|
|
IMMICH_SERVER_URL: http://immich-server:2285/
|
|
depends_on:
|
|
immich-init:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
|
|
redis:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: redis
|
|
container_name: immich-e2e-redis
|
|
|
|
database:
|
|
extends:
|
|
file: ../docker/docker-compose.dev.yml
|
|
service: database
|
|
container_name: immich-e2e-postgres
|
|
command: -c fsync=off -c shared_preload_libraries=vchord.so -c config_file=/var/lib/postgresql/data/postgresql.conf
|
|
env_file: !reset []
|
|
ports: !override
|
|
- 5435:5432
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: immich
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U postgres -d immich']
|
|
interval: 1s
|
|
timeout: 5s
|
|
retries: 30
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
model_cache:
|
|
prometheus_data:
|
|
grafana_data:
|
|
pnpm_cache:
|
|
pnpm_store_server:
|
|
pnpm_store_web:
|
|
server_node_modules:
|
|
web_node_modules:
|
|
github_node_modules:
|
|
cli_node_modules:
|
|
docs_node_modules:
|
|
e2e_node_modules:
|
|
sdk_node_modules:
|
|
app_node_modules:
|
|
sveltekit:
|
|
coverage:
|