hundreds-actor-42498
07/11/2024, 6:21 AM{
"insecure-registries": [
"myregistrydomain.com:5000"
]
}
3. sudo service docker restart
4. docker info -> The insecure-registries myregistrydomain.com:5000 is not listed
What am I doing wrong?
Soloution:
I solved this issue after create the file at /etc/default/docker with the content:
DOCKER_OPTS="--config-file=/etc/docker/daemon.json"
Perform sudo service docker restart
to init the config file.