-
I'm trying to replace Docker with Podman. My working machine is Windows 10 Enterprise (version
that WSL2 propagates to Given the minimal example of NGINX container in a pod, i.e. apiVersion: v1
kind: Pod
metadata:
labels:
app: nginx
name: nginx-mwe
spec:
containers:
- name: nginx
image: docker.io/nginx:1.25.4-alpine-slim
ports:
- containerPort: 80
hostIP: 0.0.0.0
hostPort: 80 and the equivalente Docker Compose, i.e. services:
nginx:
image: docker.io/nginx:1.25.4-alpine-slim
ports:
- 80:80 I'm observing
Can I have some help to have the Podman Informationpodman --version
I'm NOT running the WSL2 Informationwsl.exe --version
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I believe this feature was requested as #19890. |
Beta Was this translation helpful? Give feedback.
-
After read Accessing network applications with WSL, I discovered that I can use wsl.exe hostname -I to get the IP address of my Podman machine and I can use the IP address in |
Beta Was this translation helpful? Give feedback.
I believe this feature was requested as #19890.