File tree 2 files changed +8
-3
lines changed 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,17 @@ services:
5
5
# Database. Only Postgres is currently supported.
6
6
db :
7
7
image : postgres:16
8
+ ports :
9
+ - " 5432:5432/tcp"
8
10
environment :
9
11
- POSTGRES_PASSWORD=postgres
10
12
11
13
# Redis with Redisearch.
12
14
redis :
13
- image : redislabs/redisearch:latest
14
-
15
+ image : redis/redis-stack-server:latest
16
+ volumes :
17
+ - /opt/docker/shocklink/redis/redis-stack.conf:/redis-stack.conf
18
+
15
19
# The API.
16
20
# Check https://github.com/Shock-Link/API for the latest configuration settings.
17
21
api :
@@ -22,7 +26,7 @@ services:
22
26
ports :
23
27
- " 5001:80/tcp"
24
28
environment :
25
- - SHOCKLINK__DB=Host=docker-node ;Port=1337 ;Database=root ;Username=root ;Password=root ;Search Path=ShockLink
29
+ - SHOCKLINK__DB=Host=db ;Port=5432 ;Database=postgres ;Username=postgres ;Password=postgres ;Search Path=ShockLink
26
30
- SHOCKLINK__REDIS__HOST=redis
27
31
- SHOCKLINK__FRONTENDBASEURL=http://local:5002
28
32
Original file line number Diff line number Diff line change
1
+ notify-keyspace-events KEA
You can’t perform that action at this time.
0 commit comments