fix: Rename compose.yml to compose.yaml for Komodo compatibility

Komodo Resource Sync expects compose.yaml (not .yml)
All 22 stack compose files renamed for consistency
This commit is contained in:
Amber (Komodo Assistant) 2026-03-27 12:53:49 +01:00
parent 778d2d2a7e
commit 8dfb692826
22 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,52 @@
services:
immich-server:
image: ghcr.io/immich-app/immich-server:latest
container_name: immich-server
restart: unless-stopped
volumes:
- immich_upload:/usr/src/app/upload
- immich_config:/usr/src/app/config
environment:
- IMMICH_MACHINE_LEARNING_ENABLED=false
- DB_HOSTNAME=immich-postgres
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- DB_DATABASE_NAME=immich
- REDIS_HOSTNAME=immich-redis
depends_on:
- immich-postgres
- immich-redis
networks:
- immich-network
immich-postgres:
image: tensorchord/pgvecto-rs:pg14-v0.2.0
container_name: immich-postgres
restart: unless-stopped
volumes:
- immich_db:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=immich
networks:
- immich-network
immich-redis:
image: redis:latest
container_name: immich-redis
restart: unless-stopped
volumes:
- immich_redis:/data
networks:
- immich-network
volumes:
immich_upload:
immich_config:
immich_db:
immich_redis:
networks:
immich-network:
driver: bridge