File tree Expand file tree Collapse file tree 5 files changed +109
-19
lines changed
Expand file tree Collapse file tree 5 files changed +109
-19
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11version : ' 3.3'
22
3- networks :
4- evolution-net :
5- driver : bridge
6-
73services :
84 mongodb :
95 container_name : mongodb
@@ -24,6 +20,24 @@ services:
2420 expose :
2521 - 27017
2622
23+ mongo-express :
24+ image : mongo-express
25+ environment :
26+ ME_CONFIG_BASICAUTH_USERNAME : root
27+ ME_CONFIG_BASICAUTH_PASSWORD : root
28+ ME_CONFIG_MONGODB_SERVER : mongodb
29+ ME_CONFIG_MONGODB_ADMINUSERNAME : root
30+ ME_CONFIG_MONGODB_ADMINPASSWORD : root
31+ ports :
32+ - 8081:8081
33+ links :
34+ - mongodb
35+
2736volumes :
2837 evolution_mongodb_data :
29- evolution_mongodb_configdb:
38+ evolution_mongodb_configdb :
39+
40+ networks :
41+ default :
42+ name : evolution-net
43+
Original file line number Diff line number Diff line change 11version : ' 3.3'
22
3- networks :
4- evolution-net :
5- driver : bridge
6-
73services :
84 redis :
95 image : redis:latest
@@ -16,8 +12,17 @@ services:
1612 - evolution_redis:/data
1713 ports :
1814 - 6379:6379
19- networks :
20- - evolution-net
21-
15+
16+ rebrow :
17+ image : marian/rebrow
18+ ports :
19+ - 5001:5001
20+ links :
21+ - redis
22+
2223volumes :
2324 evolution_redis :
25+
26+ networks :
27+ default :
28+ name : evolution-net
Original file line number Diff line number Diff line change 1+ version : ' 3.3'
2+
3+ services :
4+ redis :
5+ image : redis:latest
6+ container_name : redis
7+ ports :
8+ - 6379:6379
9+
10+ rebrow :
11+ image : marian/rebrow
12+ ports :
13+ - 5001:5001
14+ links :
15+ - redis
16+
17+ mongodb :
18+ container_name : mongodb
19+ image : mongo
20+ restart : always
21+ volumes :
22+ - evolution_mongodb_data:/data/db
23+ - evolution_mongodb_configdb:/data/configdb
24+ ports :
25+ - 27017:27017
26+ environment :
27+ MONGO_INITDB_ROOT_USERNAME : root
28+ MONGO_INITDB_ROOT_PASSWORD : root
29+ expose :
30+ - 27017
31+
32+ mongo-express :
33+ image : mongo-express
34+ environment :
35+ ME_CONFIG_BASICAUTH_USERNAME : root
36+ ME_CONFIG_BASICAUTH_PASSWORD : root
37+ ME_CONFIG_MONGODB_SERVER : mongodb
38+ ME_CONFIG_MONGODB_ADMINUSERNAME : root
39+ ME_CONFIG_MONGODB_ADMINPASSWORD : root
40+ ports :
41+ - 8081:8081
42+ links :
43+ - mongodb
44+ api :
45+ container_name : evolution_api
46+ image : evolution/api:local
47+ restart : always
48+ ports :
49+ - 8080:8080
50+ volumes :
51+ - evolution_instances:/evolution/instances
52+ - evolution_store:/evolution/store
53+ env_file :
54+ - ./Docker/.env
55+ command : ['node', './dist/src/main.js']
56+ expose :
57+ - 8080
58+ links :
59+ - mongodb
60+ - redis
61+
62+ volumes :
63+ evolution_instances :
64+ evolution_store :
65+ evolution_mongodb_data :
66+ evolution_mongodb_configdb :
67+ evolution_redis :
68+
69+ networks :
70+ default :
71+ name : evolution-net
72+
Original file line number Diff line number Diff line change 11version : ' 3.3'
22
3- networks :
4- evolution-net :
5- driver : bridge
6-
73services :
84 api :
95 container_name : evolution_api
@@ -17,11 +13,14 @@ services:
1713 env_file :
1814 - ./Docker/.env
1915 command : ['node', './dist/src/main.js']
20- networks :
21- - evolution-net
2216 expose :
2317 - 8080
2418
2519volumes :
2620 evolution_instances :
27- evolution_store:
21+ evolution_store :
22+
23+ networks :
24+ default :
25+ name : evolution-net
26+
You can’t perform that action at this time.
0 commit comments