mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
15 lines
445 B
Bash
Executable File
15 lines
445 B
Bash
Executable File
#!/bin/bash -e
|
|
project_dir="$(dirname $( dirname $(readlink -f ${BASH_SOURCE[0]})))"
|
|
if [ $# != 1 ]; then
|
|
echo "Please enter docker image name for the rails development environment"
|
|
exit 1
|
|
fi
|
|
|
|
docker build -t $1 -f ${project_dir}/deploy/rails-prod-Dockerfile ${project_dir}/.
|
|
|
|
#Kill and remove containers gracefully without error if none are running
|
|
docker ps | grep "Exit" | awk '{print $1}' | while read -r id ; do
|
|
docker kill $id
|
|
done
|
|
|