Sonatype Nexus Repository Manager (Nexus) - Прокси сервер (proxy)


Были проблемы с работой в docker. Установил на хост. Может быть, просто забыл выбрать “trusted certs”


Allow anonymous users to access the server


Create PyPi Proxy Repo


Nexus Repo


$ cd ~/.config
$ mkdir pip
$ cd pip


$ vi ~/.config/pip/pip.conf


[global]
index = http://localhost:8081/repository/pypi-proxy/pypi
index-url = http://localhost:8081/repository/pypi-proxy/simple


$ export PIP_CONFIG_FILE=/home/marley/.config/pip/pip.conf


$ pip config list


$ pip install yolk3k


$ pip install flask


Nexus Repo


$ pip install flask --index-url http://192.168.1.9:8081/repository/pypi-proxy/simple/ --trusted-host 192.168.1.9


$ pip install -r ./requirements.txt --index-url http://192.168.1.9:8081/repository/pypi-proxy/simple/ --trusted-host 192.168.1.9