Files
helloworld/README.md
C菌 2f848fda1e up
2021-04-15 22:19:26 +08:00

29 lines
421 B
Markdown

## a web helloworld docker image
```
docker pull mirrors2/helloworld
docker run -itd --rm --name helloworld -p 80:80 mirrors2/helloworld
#curl localhost?hello=world
```
Open in Browser http://localhost:30000
## run in k8s
```
kubectl apply -f deployment/helloworld.yaml
kubectl get svc -o wide
kubectl get pods -o wide
kubectl logs -f [pod name]
```
![](images/helloworld.png)
![](images/helloworld_2.png)