Skip to content

Commit 94e2e4f

Browse files
committed
cit add compose support
1 parent 85f5cdc commit 94e2e4f

2 files changed

Lines changed: 27 additions & 1 deletion

File tree

.daemonless/compose.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
services:
2+
postgres:
3+
image: ghcr.io/daemonless/immich-postgres:pkg
4+
network_mode: host
5+
environment:
6+
POSTGRES_USER: immich
7+
POSTGRES_PASSWORD: immich
8+
POSTGRES_DB: immich
9+
10+
redis:
11+
image: ghcr.io/daemonless/redis:pkg
12+
network_mode: host
13+
14+
immich:
15+
image: ${CIT_IMAGE:-ghcr.io/daemonless/immich-server:build}
16+
network_mode: host
17+
depends_on:
18+
- postgres
19+
- redis
20+
environment:
21+
DB_HOSTNAME: 127.0.0.1
22+
DB_USERNAME: immich
23+
DB_PASSWORD: immich
24+
DB_DATABASE_NAME: immich
25+
REDIS_HOSTNAME: 127.0.0.1

.daemonless/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
icon: ':material-server:'
22
cit:
3-
mode: shell
3+
compose: true
4+
port: 2283

0 commit comments

Comments
 (0)