16 lines
263 B
Bash
16 lines
263 B
Bash
#!/bin/bash
|
|
echo "Preparing app"
|
|
|
|
minikube start
|
|
# build image Docker
|
|
docker build -t chabooo/travel-planner:latest .
|
|
|
|
echo "Sucessfuly built"
|
|
|
|
# push docker image
|
|
docker push chabooo/travel-planner:latest
|
|
|
|
echo "sucessfuly pushed"
|
|
|
|
echo "Preparation completed."
|