Difference between revisions of "Setup a Podman registry on Centos8"

From Define Wiki
Jump to navigation Jump to search
(Created page with "<pre> # 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/vol...")
 
(No difference)

Latest revision as of 19:51, 3 March 2021

# 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