Setting Up a Private Docker Registry and Using it in NAT Network
You can find these commands in my Gitlab repo.
1. Creating workspace directory
registry_volume=/registry
rm -rf ${registry_volume}; \
mkdir -p ${registry_volume}/{auth,certs,repository,redis}
We will create auth,certs,repository,redis directories.
...
msenturk.hashnode.dev5 min read