Skip to content

Commit 8f8099c

Browse files
Add KVS to default config (#220)
Signed-off-by: Artem Savchenko <armisav@gmail.com>
1 parent fbd4cdc commit 8f8099c

3 files changed

Lines changed: 16 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ Add `calendar` container to the docker-compose.yaml
508508
- ACCOUNTS_URL=http://account:3000
509509
- STATS_URL=http://stats:4900
510510
- SECRET=${SECRET}
511+
- KVS_URL=http://kvs:8094
511512
restart: unless-stopped
512513
networks:
513514
- huly_net

compose.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,20 @@ services:
212212
restart: unless-stopped
213213
networks:
214214
- huly_net
215+
216+
kvs:
217+
image: hardcoreeng/hulykvs:${HULY_VERSION}
218+
depends_on:
219+
cockroach:
220+
condition: service_started
221+
ports:
222+
- 8094:8094
223+
environment:
224+
- HULY_DB_CONNECTION=${CR_DB_URL}
225+
- HULY_TOKEN_SECRET=${SECRET}
226+
restart: unless-stopped
227+
networks:
228+
- huly_net
215229

216230
volumes:
217231
# These named volumes are used when custom volume paths are not specified

guides/gmail-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ gmail:
122122
- MINIO_ENDPOINT=minio
123123
- MINIO_ACCESS_KEY=minioadmin
124124
- MINIO_SECRET_KEY=minioadmin
125-
- KVS_URL=http://huly.local:8094
125+
- KVS_URL=http://kvs:8094
126126
- STORAGE_CONFIG=${STORAGE_CONFIG}
127127
- VERSION=v1 # Use v1 (default) or v2 (beta, requires chat/inbox modules)
128128
- MONGO_URI=mongodb://mongodb:27017

0 commit comments

Comments
 (0)