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:
parent
778d2d2a7e
commit
8dfb692826
22 changed files with 0 additions and 0 deletions
|
|
@ -1,52 +0,0 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue