File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ OPENELIS_ATOMFEED_PASSWORD=AdminadMIN*
22
22
23
23
# MySQL
24
24
MYSQL_ROOT_PASSWORD = 3cY8Kve4lGey
25
+ MYSQL_PUBLIC_PORT = 3306
25
26
26
27
# Odoo
27
28
ODOO_DB_USER = odoo
@@ -34,6 +35,7 @@ ODOO_MASTER_PASSWORD=password
34
35
# Postgresql
35
36
POSTGRES_USER = postgres
36
37
POSTGRES_PASSWORD = password
38
+ POSTGRES_PUBLIC_PORT = 5432
37
39
38
40
# Metabase
39
41
METABASE_DB_USER = metabase
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ services:
187
187
aliases :
188
188
- openmrs-mysql
189
189
ports :
190
- - " 3306:3306"
190
+ - " ${MYSQL_PUBLIC_PORT:- 3306} :3306"
191
191
volumes :
192
192
- " ${MYSQL_DATADIR:-mysql-data}:/var/lib/mysql"
193
193
- " ${SQL_SCRIPTS_PATH:-./sqls}/mysql:/docker-entrypoint-initdb.d"
@@ -332,7 +332,7 @@ services:
332
332
- bahmni-mart-postgresql
333
333
- bahmni-mart-db
334
334
ports :
335
- - " 5432:5432"
335
+ - " ${POSTGRES_PUBLIC_PORT:- 5432} :5432"
336
336
volumes :
337
337
- ${POSTGRES_DATADIR:-postgresql-data}:/var/lib/postgresql/data
338
338
- " ${SQL_SCRIPTS_PATH:-./sqls}/postgresql:/docker-entrypoint-initdb.d"
You can’t perform that action at this time.
0 commit comments