This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status. | |
set -e | |
# --- Configuration --- | |
# You can change these values if needed | |
MYSQL_CONTAINER_NAME="svl-mysql" | |
WP_CONTAINER_NAME="svl-wordpress" | |
MYSQL_ROOT_PASSWORD="your_strong_mysql_root_password" # IMPORTANT: Change this! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
######################### | |
# Execute | |
# >chmod +x setup_github.sh | |
# >./setup_github.sh | |
######################### | |
# Verbose output |