13 lines
262 B
Bash
13 lines
262 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";
|