mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [ $# != 1 ]; then
|
|
echo "Please enter docker image name for the rails development environment"
|
|
exit 1
|
|
fi
|
|
|
|
docker build -t $1 -f rails-prod-Dockerfile .
|
|
sudo docker run -d --restart=always -p 80:80 -p 443:443 $1 |