File tree Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
+ dicedbadmin :
3
+ image : dicedb/dicedb:latest
4
+ ports :
5
+ - ' 7379:7379'
6
+
2
7
dicedb :
3
8
image : dicedb/dicedb:latest
4
9
ports :
5
- - " 7379 :7379"
10
+ - ' 7380 :7379'
6
11
7
12
backend :
8
13
build :
9
14
context : .
10
- dockerfile : PlaygroundMonoDockerfile
15
+ dockerfile : PlaygroundMonoDockerfile
11
16
ports :
12
- - " 8080:8080"
17
+ - ' 8080:8080'
13
18
depends_on :
19
+ - dicedbadmin
14
20
- dicedb
15
21
environment :
22
+ - DICEDB_ADMIN_ADDR=dicedbadmin:7379
23
+ - DICEDB_ADMIN_USERNAME=${DICEDB_ADMIN_USERNAME}
24
+ - DICEDB_ADMIN_PASSWORD=${DICEDB_ADMIN_PASSWORD}
16
25
- DICEDB_ADDR=dicedb:7379
26
+ - DICEDB_USERNAME=${DICEDB_USERNAME}
27
+ - DICEDB_PASSWORD=${DICEDB_PASSWORD}
17
28
18
29
frontend :
19
30
build :
20
31
context : ../../
21
- dockerfile : ./apps/playground-web/Dockerfile # Specify the correct Dockerfile for the frontend
32
+ dockerfile : ./apps/playground-web/Dockerfile # Specify the correct Dockerfile for the frontend
22
33
ports :
23
- - " 3000:3000"
34
+ - ' 3000:3000'
24
35
depends_on :
36
+ - dicedbadmin
25
37
- dicedb
26
38
- backend
You can’t perform that action at this time.
0 commit comments