Docker Proxy
Kenapa saya menginstall Fedora lagi, alasan saya sederhana, karena Ubuntu yang saya install sudah banyak file settingan yang bermasalah. Dan saya butuh untuk install ulang pilihan saya memilih fedora karena memang untuk developer fedora memang bagus.
Install docker
sudo dnf -y install docker
setting proxy, untuk itu tambahkan scrip proxy anda di paling bawah file /etc/sysconfig/docker
HTTP_PROXY=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
http_proxy=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
HTTPS_PROXY=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
https_proxy=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
export HTTP_PROXY HTTPS_PROXY http_proxy https_proxy
lalu reload dan restart
sudo systemctl daemon-reload
sudo systemctl restart docker.service
Run untuk pertama kali docker anda
sudo docker run hello-world
Referensi :
Install docker
sudo dnf -y install docker
setting proxy, untuk itu tambahkan scrip proxy anda di paling bawah file /etc/sysconfig/docker
HTTP_PROXY=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
http_proxy=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
HTTPS_PROXY=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
https_proxy=http://USERNAME:PASSOWRD@cache.itb.ac.id:8080
export HTTP_PROXY HTTPS_PROXY http_proxy https_proxy
lalu reload dan restart
sudo systemctl daemon-reload
sudo systemctl restart docker.service
Run untuk pertama kali docker anda
sudo docker run hello-world
Referensi :
Comments
Post a Comment