Added launch script

Signed-off-by: James Ketrenos <james_git@ketrenos.com>
This commit is contained in:
James Ketr 2023-01-20 15:28:32 -08:00
parent bdc5f8f21c
commit 162b73ef96

9
launch.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
. .env
if [[ -z ${DEVELOPMENT} ]]; then
echo "Launching PRODUCTION"
docker-compose -f docker-compose.yml -f production.yml up -d
else
echo "Launching DEVELOPMENT"
docker-compose up -d
fi