diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..5efdd52 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,6 @@ +!/bin/bash + +git pull +read -p "Enter the container name: " CONTAINER_NAME +read -p "Enter the port: " PORT +PORT=${PORT} CONTAINER_NAME=${CONTAINER_NAME} docker compose up -d --build