Commit e38c98d0 authored by devteam's avatar devteam

Add new file

parent dc089dce
#!/bin/bash
echo "Iniciando Deploy..."
result=${PWD##*/}
echo "Montando Imagem do container $result"
docker build --target runner -t $result .
echo "Removendo container antigos de $result"
docker container stop $result
docker container rm -f $result
echo "Iniciando container $result"
docker run -d -p 3000:3000 --name $result $result
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment