Docker-development/settings.shinc
2018-01-04 06:56:20 +01:00

47 lines
593 B
Bash

#!/usr/bin/env bash
# DO NOT EDIT THIS FILE DIRECTLY, USE env.shinc FILE TO OVERRIDE THE FOLLOWING VARIABLES
#
# Networks
#
# Reverse proxy
PROXY_NETWORK="web-server"
# Databases
DB_NETWORK="database"
# Mail
SMTP_NETWORK="smtp"
# Elastic search
SEARCH_ENGINE_NETWORK="elastic"
#
# Database settings
#
DB_USER="root"
DB_PASSWORD="megaheslo"
PGSQL_DB_BIN="postgres_bin_dir"
#
# Colors
#
C_NONE="\033[0m" # Reset formating
C_ERR="\033[41;1m" # Red
C_WARN="\033[1;33m" # Yellow
C_HIGHLIGHT="\033[1;95m" # Purple
C_LOG="\033[1;3;36m" # Cyan
C_GREEN="\033[32m"
C_WHITE="\033[1;37m"