File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,10 @@ version: '3'
3
3
# uffizzi integration
4
4
x-uffizzi :
5
5
ingress :
6
- service : nginx
7
- port : 8081
6
+ service : dashboard
7
+ port : 4040
8
8
9
9
services :
10
-
11
10
postgres :
12
11
image : postgres
13
12
environment :
@@ -37,8 +36,11 @@ services:
37
36
resources :
38
37
limits :
39
38
memory : 1000M
39
+
40
40
dashboard :
41
- image : " ${PARSE_DASHBOARD_IMAGE}"
41
+ build :
42
+ context : .
43
+ dockerfile : ./Dockerfile
42
44
ports :
43
45
- " 4040:4040"
44
46
environment :
@@ -49,11 +51,12 @@ services:
49
51
- PARSE_DASHBOARD_USER_PASSWORD=password
50
52
- MOUNT_PATH=/dashboard
51
53
- PARSE_DASHBOARD_ALLOW_INSECURE_HTTP=1
54
+ # - TRUST_PROXY=1
55
+ - PARSE_DASHBOARD_SERVER_URL=http://127.0.0.1:1337/parse - ERR CONN REFUSED
52
56
entrypoint : /bin/sh
53
57
command :
54
58
- " -c"
55
- - " PARSE_DASHBOARD_SERVER_URL=$$UFFIZZI_URL/parse node Parse-Dashboard/index.js"
56
- # - PARSE_DASHBOARD_COOKIE_SESSION_SECRET=AB8849B6-D725-4A75-AA73-AB7103F0363F
59
+ - " export PARSE_DASHBOARD_SERVER_URL=$$UFFIZZI_URL/parse && node Parse-Dashboard/index.js"
57
60
deploy :
58
61
resources :
59
62
limits :
@@ -67,4 +70,3 @@ services:
67
70
68
71
volumes :
69
72
postgres_data :
70
-
You can’t perform that action at this time.
0 commit comments