10 lines
224 B
Bash
Executable File
10 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# build Docker images for backend and web
|
|
docker build -t backend:latest ./backend
|
|
docker build -t web:latest ./web
|
|
|
|
# load images into minikube
|
|
minikube image load backend:latest
|
|
minikube image load web:latest
|