Docker image for pypicloud
Note: See docker-compose.yml
to know how to config
docker-compose up
See [https://pypicloud.readthedocs.io/en/latest/topics/getting_started.html] for more info
pip install -i http://localhost:7001/pypi/ PACKAGE1 [PACKAGE2 ...]
If you want to configure pip to always use PyPI Cloud, you can put your preferences into the ``$HOME/.pip/pip.conf` file:
[global]
index-url = http://localhost:7001/pypi/
To upload packages, you will need to add your server as an index server inside your $HOME/.pypirc
:
[distutils]
index-servers = pypicloud
[pypicloud]
repository: http://localhost:7001/pypi/
username: <<username>>
password: <<password>>
Now to upload a package you should run:
python setup.py bdist_wheel --universal upload -r pypicloud
Maybe because you are run and shutdown the container multiple times. Each time, the session secret key on server is changed, so server does not recognize the old ssession from client. Let try to clear browser cache and try again.