mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2024-11-16 10:00:32 +01:00
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
eval $(minikube docker-env --shell bash)
|
|
|
|
docker build -t base-station ./base
|
|
docker build -t satellite ./sat
|
|
|
|
kubectl apply -f ./scenario.yaml
|