14 lines
307 B
Bash
14 lines
307 B
Bash
#!/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";
|
|
MARIADB_DUMP="$ROOT/persistent/mariadb.sql"; |