We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85f5cdc commit 94e2e4fCopy full SHA for 94e2e4f
2 files changed
.daemonless/compose.yml
@@ -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
13
14
+ immich:
15
+ image: ${CIT_IMAGE:-ghcr.io/daemonless/immich-server:build}
16
17
+ depends_on:
18
+ - postgres
19
+ - redis
20
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
@@ -1,3 +1,4 @@
icon: ':material-server:'
cit:
- mode: shell
+ compose: true
+ port: 2283
0 commit comments