File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,20 @@ services:
52
52
- " 5050:80"
53
53
volumes :
54
54
- pgadmin_data:/root/.pgadmin
55
-
55
+
56
+ mongo-express :
57
+ image : mongo-express
58
+ environment :
59
+ - ME_CONFIG_MONGODB_SERVER=transactiondb
60
+ - ME_CONFIG_MONGODB_PORT=27017
61
+ - ME_CONFIG_BASICAUTH_USERNAME=admin
62
+ - ME_CONFIG_BASICAUTH_PASSWORD=admin1234
63
+ restart : always
64
+ ports :
65
+ - " 8081:8081"
66
+ volumes :
67
+ - mongo_data:/data/db
68
+
56
69
portainer :
57
70
container_name : portainer
58
71
restart : always
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ services:
15
15
16
16
pgadmin :
17
17
image : dpage/pgadmin4
18
-
18
+
19
+ mongo-express :
20
+ image : mongo-express
21
+
19
22
portainer :
20
23
image : portainer/portainer-ce
21
24
You can’t perform that action at this time.
0 commit comments