Skip to content

thongdong7/docker-pypicloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Pypicloud

Docker image for pypicloud

Usage

Note: See docker-compose.yml to know how to config

Run container

docker-compose up

See [https://pypicloud.readthedocs.io/en/latest/topics/getting_started.html] for more info

Install package

pip install -i http://localhost:7001/pypi/ PACKAGE1 [PACKAGE2 ...]

Config

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/

Uploading Packages

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

Issues and troubleshooting

Bad gateway

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published