ptut-virtenv/metactl/environment.sh

13 lines
262 B
Bash
Raw Normal View History

#!/bin/bash
# 1. Absolute directory
ROOT="$(dirname `realpath $0`)";
# 2. Service container names
MARIADB_SERVICE="mariadb";
PHPFPM_SERVICE="php-fpm";
NGINX_SERVICE="nginx";
# 3. Mariadb credentials
MARIADB_ROOT_PASSWORD="root";
MARIADB_DATABASE_NAME="vhost";