It seems a simple question but it's really not clear what the meaning is of this command:
docker run -d -p 5000:5000 --restart=always --name registry \
-v `pwd`/certs:/certs \
-e REGISTRY_HTTP_TLS_CERTIFICATE=/certs/domain.crt \
-e REGISTRY_HTTP_TLS_KEY=/certs/domain.key \
registry:2
The -v pwd/certs:/certs \
is not clear at all.
Could someone give an explanation