Chad
8602f7ada2
* Improve the main crontab example. * Remove /opt/Docker hardcodes. * Add periods. * Improve readability. * Begin removing hardcoded path from the bin files. * Update main README to no longer enforce hardcoded path. Other improvements. * Add the load folder with a README. * Add load folder and its README. * Improve reverse proxy text files. * Switch to tabs. * Update all scripts for tabs, DOCKER_HOME, and comments. * Let users know the directory choice is optional. * Fix environment file. * Add more details for the reverse proxy load balancing. * Don't actually listen for postgres. * Fix comments on source file. * Be more explicit on the pathing.
45 lines
774 B
Bash
Executable File
45 lines
774 B
Bash
Executable File
#!/bin/bash
|
|
# 2022-08-05 Hyperling
|
|
# Create new container template.
|
|
# usage: create.sh PROJECT_NAME
|
|
|
|
## Setup ##
|
|
|
|
DIR="`dirname $0`"
|
|
PROG=`basename $0`
|
|
if [[ $DIR == *"."* ]]; then
|
|
DIR="`pwd`"
|
|
fi
|
|
|
|
if [[ -z $DOCKER_HOME ]]; then
|
|
DOCKER_HOME="$DIR/.."
|
|
fi
|
|
|
|
## Validation ##
|
|
|
|
[[ -z $1 ]] && {
|
|
echo "ERROR: A project name must be specified."
|
|
exit 1
|
|
}
|
|
|
|
[[ ! -z $2 ]] && {
|
|
echo "ERROR: Program does not accept a 2nd parameter. Please quote project names with spaces if you insist on using them."
|
|
exit 2
|
|
}
|
|
|
|
## Variables ##
|
|
|
|
dir="$1"
|
|
file="$dir/docker-compose.yml"
|
|
|
|
## Main ##
|
|
|
|
cd $DOCKER_HOME
|
|
mkdir -pv "$dir"
|
|
[[ ! -f "$file" ]] && echo -e "# Comment.\nservices:\n" >> "$file" ||
|
|
echo "File already exists, leaving contents alone."
|
|
echo "${file}:"
|
|
cat "$file"
|
|
|
|
exit 0
|