🌐
PyPI
pypi.org › project › docker
docker · PyPI
It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. The latest stable version is available on PyPI.
      » pip install docker
    
Published   May 23, 2024
Version   7.1.0
🌐
PyPI
pypi.org › project › docker-py
docker-py · PyPI
A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. The latest stable version is always available on PyPi.
      » pip install docker-py
    
Published   Nov 02, 2016
Version   1.10.6
🌐
Docker
docker-py.readthedocs.io
Docker SDK for Python — Docker SDK for Python 7.1.0 documentation
A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. For more information about the Engine API, see its documentation. The latest stable version is available on PyPI.
🌐
PyPI
pypi.org › project › python-docker
python-docker · PyPI
A pure python implementation to build docker images without docker and provide a python api for interacting with docker registries.
      » pip install python-docker
    
Published   Aug 02, 2022
Version   0.2.0
🌐
Medium
joepreludian.medium.com › how-to-create-a-dockerized-pypi-server-in-5min-with-simple-authentication-54ab546d478b
How to create a Dockerized PyPI server in 5min with simple authentication | by Jonhnatha Trigueiro | Medium
July 11, 2021 - With this post I will show you how to deploy a simple PyPI Server, using docker. Since I work with with Python, there is a need to reuse code amongst my python projects.
🌐
GitHub
github.com › codekoala › docker-pypi
GitHub - codekoala/docker-pypi: Docker build for a simple PyPI server.
sudo mkdir -p /srv/pypi # local ... your very own PyPI server. You can add Python packages to the server simply by including the tarballs, zips, wheels, eggs, etc in your /srv/pypi directory....
Starred by 113 users
Forked by 47 users
Languages   Shell 65.9% | Makefile 34.1% | Shell 65.9% | Makefile 34.1%
🌐
GitHub
github.com › docker › docker-py
GitHub - docker/docker-py: A Python library for the Docker Engine API · GitHub
A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. The latest stable version is available on PyPI.
Starred by 7.2K users
Forked by 1.7K users
Languages   Python
Find elsewhere
🌐
PyPI
pypi.org › user › docker
Profile of docker · PyPI
A Python library for the Docker Engine API.
🌐
PyPI
pypi.org › project › python-docker-mcp
python-docker-mcp · PyPI
docker: image: python:3.12.2-slim working_dir: /app memory_limit: 256m cpu_limit: 0.5 timeout: 30 network_disabled: true read_only: true package: installer: uv # or pip index_url: null # Set to your PyPI mirror if needed trusted_hosts: [] # List of trusted hosts for pip/uv allowed_modules: - math - datetime - random - json - re - collections blocked_modules: - os - sys - subprocess - shutil - pathlib
      » pip install python-docker-mcp
    
Published   Apr 26, 2025
Version   0.2.5
🌐
PyPI
pypi.org › project › dockerpty
dockerpty · PyPI
Python library to use the pseudo-tty of a docker container
      » pip install dockerpty
    
Published   Feb 04, 2016
Version   0.4.1
🌐
Robopenguins
robopenguins.com › pypi-proxy
PyPI Proxying for Docker Builds | Robopenguins
September 6, 2024 - Initially, I tried to also leave extra-index-url=http://pypi.python.org/pypi as a fallback, but it turns out that there’s no way to ensure that it doesn’t get used instead of the proxy (https://stackoverflow.com/questions/67253141/python-pip-priority-order-with-index-url-and-extra-index-url) causing the image to be downloaded over WAN instead of the cache. It took a few tries before I managed to use proxpi in a Docker build.
🌐
GitHub
github.com › pypiserver › pypiserver
GitHub - pypiserver/pypiserver: Minimal PyPI server for uploading & downloading packages with pip/easy_install · GitHub
The container takes all the same arguments as the normal pypi-server executable, with the exception of the internal container port (-p), which will always be 8080. Of course, just running a container isn't that interesting. To map port 80 on the host to port 8080 on the container:: docker run -p 80:8080 pypiserver/pypiserver:latest run
Starred by 2K users
Forked by 327 users
Languages   Python 96.7% | Shell 1.8%
🌐
Docker Hub
hub.docker.com › r › mosquito › pypi-server
mosquito/pypi-server - Docker Image
Welcome to the world's largest container registry built for developers and open source contributors to find, use, and share their container images. Build, push and pull.
🌐
PyPI
pypi.org › project › docker-registry
docker-registry · PyPI
## Example config ```yaml common: &common standalone: true loglevel: info search_backend: "_env:SEARCH_BACKEND:" sqlalchemy_index_database: "_env:SQLALCHEMY_INDEX_DATABASE:sqlite:////tmp/docker-registry.db" prod: <<: *common loglevel: warn storage: s3 s3_access_key: _env:AWS_S3_ACCESS_KEY s3_secret_key: _env:AWS_S3_SECRET_KEY s3_bucket: _env:AWS_S3_BUCKET boto_bucket: _env:AWS_S3_BUCKET storage_path: /srv/docker smtp_host: localhost from_addr: docker@myself.com to_addr: my@myself.com dev: <<: *common loglevel: debug storage: local storage_path: /home/myself/docker test: <<: *common storage: lo
      » pip install docker-registry
    
Published   Jan 08, 2015
Version   0.9.1
🌐
Mpho Mphego
blog.mphomphego.co.za › blog › 2021 › 06 › 15 › How-I-setup-a-private-PyPI-server-using-Docker-and-Ansible.html
How I Setup A Private Local PyPI Server Using Docker And Ansible
June 15, 2021 - I created the following Dockerfile, which executes a script entrypoint.sh upon container startup and also copies a create_pypi_index.sh script which should be run once when the devpi-server is up. This script creates and configures the indices. cat >> Dockerfile << EOF FROM python:3.7 RUN pip install --no-cache-dir \ devpi-client==5.2.2 \ devpi-server==5.5.1 \ devpi-web==4.0.6 ENV PYPI_PASSWORD EXPOSE 3141 WORKDIR /root VOLUME /root/.devpi COPY create_pypi_index.sh /data/create_pypi_index.sh RUN chmod a+x /data/create_pypi_index.sh COPY entrypoint.sh /data/entrypoint.sh ENTRYPOINT ["bash", "/data/entrypoint.sh"] COPY config.yml /data/config.yml CMD ["devpi-server", "-c", "/data/config.yml"] EOF
🌐
OneUptime
oneuptime.com › home › blog › how to run devpi in docker (private pypi server)
How to Run Devpi in Docker (Private PyPI Server)
February 8, 2026 - # Dockerfile - custom Devpi server FROM python:3.12-slim # Install devpi-server and devpi-web (the web interface) RUN pip install --no-cache-dir \ devpi-server \ devpi-web \ devpi-client # Create data directory RUN mkdir -p /data # Initialize the server data directory RUN devpi-init --serverdir /data EXPOSE 3141 # Start devpi-server CMD ["devpi-server", \ "--serverdir", "/data", \ "--host", "0.0.0.0", \ "--port", "3141"]
🌐
PyPI
pypi.org › project › docker-sdk
docker-sdk · PyPI
August 15, 2024 - Develop with Docker Engine SDKs Docker provides an API for interacting with the Docker daemon (called the Docker Engine API), as well as SDKs for Go and Python. The SDKs allow you to efficiently build and scale Docker apps and solutions.
      » pip install docker-sdk
    
Published   Aug 15, 2024
Version   1.0.4
🌐
PyPI
pypi.org › project › docker-py › 0.5.2
docker-py 0.5.2
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser