You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
539 B

2 years ago
#!/bin/sh
auth_zhiwucloud="bGl4aWFvbWluQGFueGluam95LmNvbTp1Njk4RUsxcGsx"
auth_anxinyun_ali="aGk1MDA0MDIwMUBhbGl5dW4uY29tOlY5cnRDbnQkZg=="
cp /root/.docker/config.json.temp /root/.docker/config.json
case $1 in
"zhiwucloud")
echo "user is $1, use $1's auth "
sed -i "s@==auth==@${auth_zhiwucloud}@g" /root/.docker/config.json
;;
"anxinyun")
echo "user is $1, use $1's auth "
sed -i "s@==auth==@${auth_anxinyun_ali}@g" /root/.docker/config.json
;;
*)
echo "user is $1, not found $1's auth "
;;
esac