Recently, I set up Docker image acceleration, but I seem to be encountering some issues.
Running docker pull domain/mysql results in the following error, but running docker pull domain/library/mysql works fine.
Similar issues occur with images like ubuntu, alpine, and python. However, running docker pull domain/linuxserver/emby works fine.
I suspect the issue arises because typical pull commands use the format repository/image, and for mysql, which has only the image name, the pull command fails as it treats the domain as the repository.
Below are some configurations I have in the Advanced section. These are configurations I pieced together that are able to run. I am not particularly knowledgeable in this area and hope to seek help here to achieve the ability to pull images using docker pull domain/mysql and similar commands.Thank you very much.
Recently, I set up Docker image acceleration, but I seem to be encountering some issues.
Running docker
pull domain/mysql
results in the following error, but runningdocker pull domain/library/mysql
works fine.Similar issues occur with images like
ubuntu
,alpine
, andpython
. However, runningdocker pull domain/linuxserver/emby
works fine.I suspect the issue arises because typical pull commands use the format
repository/image
, and formysql
, which has only the image name, the pull command fails as it treats the domain as the repository.Below are some configurations I have in the Advanced section. These are configurations I pieced together that are able to run. I am not particularly knowledgeable in this area and hope to seek help here to achieve the ability to pull images using
docker pull domain/mysql
and similar commands.Thank you very much.