Setup a Podman registry on Centos8

From Define Wiki
Jump to navigation Jump to search
# setting up a registry using podman (which seems to get installed as part of the ceph ansible setup)
podman  run -d -p 4000:5000 --restart=always -v /var/lib/docker/volumes/registry:/var/lib/registry --name registry registry:2
vi  /etc/containers/registries.conf
#
[registries.insecure]
registries = ['192.168.11.10:4000']
#
podman restart registry
podman push 192.168.11.10:4000/kolla/centos-binary-nova-compute:train-centos8