19 lines
541 B
Plaintext
19 lines
541 B
Plaintext
# Database Config
|
|
## Database Port
|
|
DB_PORT="3306"
|
|
## Database User
|
|
DB_USER="dbuser"
|
|
## Database Port
|
|
DB_PORT="testdb"
|
|
## Database name
|
|
DB_NAME="testdb"
|
|
|
|
# Port Mapping
|
|
## Frontend Port will be used by frontend container to expose itself
|
|
FRONTEND_PORT="30381"
|
|
## Backend Port will be used by bachend container to expose itself
|
|
BACKEND_PORT="30382"
|
|
## 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" |