I am unable to create a postgress container using Podman in Ubuntu from why Windows terminal and I don't know why.
this is my command :
podman pod create --name postgress-container -p 8080:8080
this is the message I get:
"Error: repository name must have at least one component"
You are probably missing the image name
postgres:<version>
Also podman pod is not the right command to create a container. Pods provide Infrastructure for containers. Read more here: https://developers.redhat.com/blog/2019/01/15/podman-managing-containers-podsIn your case i would run something like this:
but if you start this container it won't run, because you need to set initial postgres password, like so:
or better formatted:
See also docs from postgesql on dockerhub: https://hub.docker.com/_/postgres/
Most docker commands can be made to docker commands by replacing docker with podman.