|
@@ -1,28 +1,6 @@
|
1
|
1
|
version: '3.8'
|
2
|
2
|
|
3
|
3
|
services:
|
4
|
|
- mongodb:
|
5
|
|
- image: mongo:6.0.6
|
6
|
|
- container_name: mongodb_${containername}
|
7
|
|
- ports:
|
8
|
|
- - "28087:27017"
|
9
|
|
- environment:
|
10
|
|
- - MONGO_INITDB_ROOT_USERNAME=admin
|
11
|
|
- - MONGO_INITDB_ROOT_PASSWORD=Bizgaze@123
|
12
|
|
- volumes:
|
13
|
|
- - /var/lib/mongodb:/data/db
|
14
|
|
-
|
15
|
|
- postgresql:
|
16
|
|
- image: postgres:14
|
17
|
|
- container_name: postgresql_${containername}
|
18
|
|
- ports:
|
19
|
|
- - "2424:5432"
|
20
|
|
- environment:
|
21
|
|
- - POSTGRES_USER=postgres
|
22
|
|
- - POSTGRES_PASSWORD=Bizgaze@123
|
23
|
|
- volumes:
|
24
|
|
- - /var/lib/postgresql/14/bizgaze:/var/lib/postgresql/data
|
25
|
|
-
|
26
|
4
|
bizgaze_application:
|
27
|
5
|
image: harbor.hireserver.com/${reponame}/application:latest
|
28
|
6
|
container_name: bizgaze_application_${containername}
|
|
@@ -33,28 +11,18 @@ services:
|
33
|
11
|
- ${settings_dir}:/opt/bizgaze/wwwroot/settings
|
34
|
12
|
- ${_files_dir}:/opt/bizgaze/wwwroot/_files
|
35
|
13
|
environment:
|
36
|
|
- - appversion=958
|
37
|
|
- - ConnectionStrings__common=server=postgresql_${containername};port=2424;Database=bizgaze_common_demo_0905;User id=postgres;Password=Bizgaze@123;MaxPoolSize=5000;Connection Lifetime=300
|
38
|
|
- - ConnectionStrings__common_nsdb=bizgaze_common_demo_0905
|
39
|
|
- - ConnectionStrings__nsdb_remoteconnection=mongodb://admin:Bizgaze%40123@mongodb_${containername}:28087/authSource={{mongo_db}}&ssl=false?authSource=admin&readPreference=primary&directConnection=true&ssl=false
|
40
|
|
- - ConnectionStrings__postgres=server=localhost;port=5432;Database=postgres;User id=postgres;Password=Bizgaze@123
|
41
|
|
-
|
|
14
|
+ - appversion=897
|
42
|
15
|
bizgaze_assets:
|
43
|
16
|
image: harbor.hireserver.com/${reponame}/assets:latest
|
44
|
17
|
container_name: bizgaze_assets_${containername}
|
45
|
18
|
ports:
|
46
|
19
|
- "${assetsport}:80"
|
47
|
20
|
environment:
|
48
|
|
- - assetsversion=957
|
49
|
|
-
|
|
21
|
+ - assetsversion=896
|
50
|
22
|
bizgaze_automation:
|
51
|
23
|
image: harbor.hireserver.com/${reponame}/automation:latest
|
52
|
24
|
container_name: bizgaze_automation_${containername}
|
53
|
25
|
volumes:
|
54
|
26
|
- ${automation_appsettings}:/opt/automation/appsettings.json
|
55
|
27
|
environment:
|
56
|
|
- - automationversion=957
|
57
|
|
- - ConnectionStrings__common=server=postgresql_${containername};port=2424;Database=bizgaze_common_demo_0905;User id=postgres;Password=Bizgaze@123;MaxPoolSize=5000;Connection Lifetime=300
|
58
|
|
- - ConnectionStrings__common_nsdb=bizgaze_common_demo_0905
|
59
|
|
- - ConnectionStrings__nsdb_remoteconnection=mongodb://admin:Bizgaze%40123@mongodb_${containername}:28087/authSource={{mongo_db}}&ssl=false?authSource=admin&readPreference=primary&directConnection=true&ssl=false
|
60
|
|
- - ConnectionStrings__postgres=server=localhost;port=5432;Database=postgres;User id=postgres;Password=Bizgaze@123
|
|
28
|
+ - automationversion=896
|