Update podman-env documentation with local development example

Add practical example showing how to build images directly in minikube
and deploy them to Kubernetes without needing a separate registry.
This demonstrates the key value proposition of the Docker API
compatibility approach.
pull/21259/head
elasticdotventures 2025-08-05 04:45:57 +00:00
parent 0dda539974
commit bfcdf260a9
1 changed files with 15 additions and 0 deletions

View File

@ -42,6 +42,21 @@ docker run myapp
This approach provides Docker API compatibility while using Podman as the container runtime inside minikube. This approach provides Docker API compatibility while using Podman as the container runtime inside minikube.
### Building Images for Local Development
You can build images directly in minikube and deploy them without a separate registry:
```shell
# Configure environment
eval $(minikube podman-env)
# Build image directly in minikube
docker build -t my-local-app .
# Deploy to Kubernetes without registry
kubectl run my-app --image=my-local-app --image-pull-policy=Never
```
### Options ### Options
``` ```