2022-07-28 21:49:44 +02:00
|
|
|
# Database Config
|
|
|
|
## Database Port
|
|
|
|
DB_PORT="3306"
|
|
|
|
## Database User
|
|
|
|
DB_USER="dbuser"
|
|
|
|
## Database Port
|
|
|
|
DB_PORT="testdb"
|
|
|
|
## Database name
|
2022-07-28 22:02:50 +02:00
|
|
|
DB_NAME="testdb"
|
|
|
|
|
|
|
|
# Port Mapping
|
2022-07-28 23:00:31 +02:00
|
|
|
## Frontend Port will be used by frontend container to expose itself
|
2022-07-28 22:02:50 +02:00
|
|
|
FRONTEND_PORT="30381"
|
2022-07-28 23:00:31 +02:00
|
|
|
## Backend Port will be used by bachend container to expose itself
|
2022-07-28 22:02:50 +02:00
|
|
|
BACKEND_PORT="30382"
|
2022-07-28 23:00:31 +02:00
|
|
|
## Haproxy Port will be used by haproxy container to expose webserver & backends based on uri
|
|
|
|
HAPROXY_PORT="80"
|
|
|
|
## Haproxy Stats Port will display haproxy stats interface
|
|
|
|
HAPROXY_STATS_PORT="81"
|