Name | pei-docker JSON |
Version |
1.1.1
JSON |
| download |
home_page | None |
Summary | A sophisticated Docker automation framework that transforms YAML configurations into reproducible containerized environments |
upload_time | 2025-08-08 10:22:24 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.11 |
license | MIT |
keywords |
automation
containerization
devops
docker
yaml
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 -->
<a id="readme-top"></a>
<!--
*** Thanks for checking out the Best-README-Template. If you have a suggestion
*** that would make this better, please fork the repo and create a pull request
*** or simply open an issue with the tag "enhancement".
*** Don't forget to give the project a star!
*** Thanks again! Now go create something AMAZING! :D
-->
<!-- PROJECT SHIELDS -->
<!--
*** I'm using markdown "reference style" links for readability.
*** Reference links are enclosed in brackets [ ] instead of parentheses ( ).
*** See the bottom of this document for the declaration of the reference variables
*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use.
*** https://www.markdownguide.org/basic-syntax/#reference-style-links
-->
<!-- [![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![LinkedIn][linkedin-shield]][linkedin-url] -->
<!-- PROJECT LOGO -->
<br />
<div align="center">
<!-- <a href="https://github.com/github_username/repo_name">
<img src="images/logo.png" alt="Logo" width="80" height="80">
</a> -->
<h3 align="center">PeiDocker (配 docker)</h3>
<p align="center">
Easily automate docker building process without learning much about Dockerfiles.
<!-- <br />
<a href="https://igamenovoer.github.io/PeiDocker"><strong>Explore the docs »</strong></a>
<br />
<br />
<a href="https://github.com/github_username/repo_name">Examples</a>
·
<a href="https://github.com/github_username/repo_name/issues/new?labels=bug&template=bug-report---.md">Report Bug</a>
·
<a href="https://github.com/github_username/repo_name/issues/new?labels=enhancement&template=feature-request---.md">Request Feature</a> -->
</p>
</div>
<!-- TABLE OF CONTENTS -->
<!-- <details>
<summary>Table of Contents</summary>
<ol>
<li>
<a href="#about-the-project">About The Project</a>
<ul>
<li><a href="#built-with">Built With</a></li>
</ul>
</li>
<li>
<a href="#getting-started">Getting Started</a>
<ul>
<li><a href="#prerequisites">Prerequisites</a></li>
<li><a href="#installation">Installation</a></li>
</ul>
</li>
<li><a href="#usage">Usage</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#license">License</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#acknowledgments">Acknowledgments</a></li>
</ol>
</details> -->
<!-- ABOUT THE PROJECT -->
## About The Project
You don't have time to learn Dockerfiles, we get it.
But don't keep your docker images around, they will be messed up eventually. If you ever want to make reproducible docker images but have no patience to learn Dockerfiles and docker-compose, PeiDocker is for you.
PeiDocker (配 docker) helps you script and organize your docker image building process with both CLI and modern Web GUI interfaces. It streamlines the building process and allows you to customize the image building and running behaviours using shell scripts.
With PeiDocker, you can:
- **Custom Script Hooks**: Run custom scripts during image build, first run, each time the container starts or when you SSH into the container, without knowing Dockerfiles
- **Painless Configuration**: Quickly setup SSH configurations for multiple users and authentication methods, changing apt repositories, pip repositories, mounts using docker volumes, system-wide proxy, etc.
- **Dynamic Storage Support**: Use external storage in development, and transparently switch to internal storage in deployment
- **Configure With GUI**: Use the modern web interface to create your reusable docker building files without writing Dockerfiles
### Examples
Given the below `user_config.yml` file, PeiDocker will generate a `docker-compose.yml` file for you, using which you will build two docker images `pei-cn-demo:stage-1` and `pei-cn-demo:stage-2` with many useful features.
```yaml
# pei-docker configuration file as demo
# in-container paths are relative to /installation directory
stage_1:
# input/output image settings
image:
base: ubuntu:24.04
output: pei-cn-demo:stage-1
# ssh settings
ssh:
enable: true
# you can configure ssh port in container (default is 22 if not set)
# useful if you want to use network-mode=host, avoid conflicting with host services
port: 333
# mapped port on host machine, if given, this port will be mapped to the container SSH port
host_port: 2222
# ssh users, the key is user name
users:
me:
password: '123456'
# using this will add your public key to the container as authorized key, you can also specify a file path
# pubkey_file: '~'
# you can also use inline public key text
# pubkey_text: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC...'
root: # allow you to ssh as root
password: root
# apt settings
apt:
# use 'tuna' or 'aliyun' apt mirror for faster downloads in China
repo_source: 'aliyun'
keep_repo_after_build: true # keep the apt source file after build
# custom scripts
custom:
# scripts run during build
# Scripts can include parameters: 'script.sh --param1=value1 --param2="value with spaces"'
on_build:
- 'stage-1/custom/install-dev-tools.sh' # just an example, you can safely remove this
stage_2:
# input/output image settings
image:
output: pei-cn-demo:stage-2
# dynamic storage settings
# they define the physical location of `/soft/app`, `/soft/data` and `/soft/workspace` point to, your these paths can be switched among different storage locations, so that you can use external storage in development, and move them to internal storage in deployment
storage:
app: # /soft/app will be kept as part of the image
type: image
data: # mounting /your/data/path to /soft/data in container
type: host
host_path: /your/data/path
workspace: # /soft/workspace will be mounted to a docker automatic volume
type: auto-volume
# mount external volumes to container
mount:
# mounting docker automatic volume to /home/me
# so that you do not have to commit your docker image everytime some configuration changes
home_me:
type: auto-volume # auto-volume, manual-volume, host
dst_path: /home/me
custom:
# scripts run during build
# Scripts can include parameters: 'script.sh --param1=value1 --param2="value with spaces"'
on_build:
# install pixi, a lightweight python package manager
- 'stage-2/system/pixi/install-pixi.bash'
# configure pixi to use tuna mirror in China
- 'stage-2/system/pixi/set-pixi-repo-tuna.bash' # set pixi repo to tuna, a fast mirror in China
```
After you build the images, if you start `pei-cn-demo:stage-1` or `pei-cn-demo:stage-2` with `docker compose`, you will have fully functional docker containers with the following features:
#### pei-cn-demo:stage-1 container features
- SSH server running on port 333 inside container, mapped to port 2222 on host, with a user `me` and password `123456`, you can also login as root with password `root`
- `apt` source is switched to `aliyun` mirror for faster downloads in China
- development tools installed via `install-dev-tools.sh` script, into system dirs
#### pei-cn-demo:stage-2 container features
- includes all features of `stage-1`
- `/soft/data` is mounted to `/your/data/path` on host, so you can use external storage in development
- `/soft/workspace` is mounted to a docker automatic volume, so you can use it as a persistent workspace
- `/home/me` is mounted to a docker automatic volume, so during use of the container you can persist your user-specific settings without committing the image
- `pixi` package manager installed, with `tuna` mirror configured, so you can install python packages easily, via the `on_build` scripts
You can further customize the `user_config.yml` file to add more features, mainly using the `custom` section to run your own scripts during build, first run, container starts or login, so you ONLY need to master bash scripting to maintain your docker images build process, no need to learn Dockerfiles!
_For details, please refer to the [Documentation](https://igamenovoer.github.io/PeiDocker/)_
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ### Built With
* [![Next][Next.js]][Next-url]
* [![React][React.js]][React-url]
* [![Vue][Vue.js]][Vue-url]
* [![Angular][Angular.io]][Angular-url]
* [![Svelte][Svelte.dev]][Svelte-url]
* [![Laravel][Laravel.com]][Laravel-url]
* [![Bootstrap][Bootstrap.com]][Bootstrap-url]
* [![JQuery][JQuery.com]][JQuery-url]
<p align="right">(<a href="#readme-top">back to top</a>)</p> -->
<!-- GETTING STARTED -->
## Getting Started
### Installation
#### Option 1: Install from PyPI (Recommended)
```sh
# for ordinary python users, or conda users
pip install pei-docker
# if you are using pixi, you need to install via pipx
pixi global install pipx # install pipx if you haven't done so
pipx install pei-docker # then install pei-docker
```
#### Option 2: Install from Source
```sh
git clone https://github.com/igamenovoer/PeiDocker.git
cd PeiDocker
pip install -e .
```
### Prerequisites
- Docker and docker-compose installed on your machine
- Python 3.11 or higher
<!-- USAGE EXAMPLES -->
## Usage
### Web GUI (Experimental)
The modern web interface provides an intuitive way to manage PeiDocker projects:
```sh
# Start GUI on auto-selected port, in browser
pei-docker-gui start
# Or specify a custom port
pei-docker-gui start --port 8080
# Load an existing project
pei-docker-gui start --project-dir /path/to/my/project
# Run in native desktop mode (requires pywebview)
# You need this to use the "Browse" feature to locate directories
pei-docker-gui start --native
```
### Command Line Interface
Create a new project:
```sh
# Create a new project in ./build or any other directory
pei-docker-cli create -p /your/build/dir
```
Edit the configuration file `user_config.yml` in the project directory (e.g.,`/your/build/dir`) according to your needs. Generate the `docker-compose.yml` file in the project directory:
```sh
# From within the project directory
cd /your/build/dir
pei-docker-cli configure
# Or specify project directory explicitly
pei-docker-cli configure -p /your/build/dir
# Optional: Use a different config file
pei-docker-cli configure -p /your/build/dir -c my-custom-config.yml
```
Build the docker images. There are two images to be built, namely `stage-1` and `stage-2`. `stage-1` is intended to be a base image, installing system apps using `apt install`, `stage-2` is intended to be a final image based on `stage-1`, installing custom apps using downloaded packages like `.deb`. External storage is only available in `stage-2`.
```sh
cd /your/build/dir
# Using docker compose to build the images.
# To see all the output, use --progress=plain
# To cleanly rebuild the images, use --no-cache
# Build the stage-1 image
# By default, the image is named pei-image:stage-1, you can change it in user_config.yml
docker compose build stage-1 --progress=plain
# Build the stage-2 image
# By default, the image is named pei-image:stage-2
docker compose build stage-2 --progress=plain
```
Run the docker container:
```sh
# inside project directory, such as /your/build/dir
# Typically you will run the stage-2 container
# You can also up the stage-1 container as well.
docker compose up stage-2
```
If you have setup SSH in `user_config.yml`, now you can SSH into the container:
```sh
# by default, it will create a user named `me` with password '123456'
# and map the port 2222 to the container's port 22
ssh me@127.0.0.1 -p 2222
```
That's it, you are good to go.
_For more examples, please refer to the [Documentation](https://igamenovoer.github.io/PeiDocker/)_
<p align="right">(<a href="#readme-top">back to top</a>)</p>
Raw data
{
"_id": null,
"home_page": null,
"name": "pei-docker",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": "igamenovoer <igamenovoer@xx.com>",
"keywords": "automation, containerization, devops, docker, yaml",
"author": null,
"author_email": "igamenovoer <igamenovoer@xx.com>",
"download_url": "https://files.pythonhosted.org/packages/59/1a/2102e2d9cefca6c7e275cd6d2971bc91d513ca5065ba3a5e44d2cc2db104/pei_docker-1.1.1.tar.gz",
"platform": null,
"description": "<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 -->\n<a id=\"readme-top\"></a>\n<!--\n*** Thanks for checking out the Best-README-Template. If you have a suggestion\n*** that would make this better, please fork the repo and create a pull request\n*** or simply open an issue with the tag \"enhancement\".\n*** Don't forget to give the project a star!\n*** Thanks again! Now go create something AMAZING! :D\n-->\n\n\n\n<!-- PROJECT SHIELDS -->\n<!--\n*** I'm using markdown \"reference style\" links for readability.\n*** Reference links are enclosed in brackets [ ] instead of parentheses ( ).\n*** See the bottom of this document for the declaration of the reference variables\n*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use.\n*** https://www.markdownguide.org/basic-syntax/#reference-style-links\n-->\n<!-- [![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n[![LinkedIn][linkedin-shield]][linkedin-url] -->\n\n\n\n<!-- PROJECT LOGO -->\n<br />\n<div align=\"center\">\n <!-- <a href=\"https://github.com/github_username/repo_name\">\n <img src=\"images/logo.png\" alt=\"Logo\" width=\"80\" height=\"80\">\n </a> -->\n\n<h3 align=\"center\">PeiDocker (\u914d docker)</h3>\n\n <p align=\"center\">\n Easily automate docker building process without learning much about Dockerfiles.\n <!-- <br />\n <a href=\"https://igamenovoer.github.io/PeiDocker\"><strong>Explore the docs \u00bb</strong></a>\n <br />\n <br />\n <a href=\"https://github.com/github_username/repo_name\">Examples</a>\n \u00b7\n <a href=\"https://github.com/github_username/repo_name/issues/new?labels=bug&template=bug-report---.md\">Report Bug</a>\n \u00b7\n <a href=\"https://github.com/github_username/repo_name/issues/new?labels=enhancement&template=feature-request---.md\">Request Feature</a> -->\n </p>\n</div>\n\n\n\n<!-- TABLE OF CONTENTS -->\n<!-- <details>\n <summary>Table of Contents</summary>\n <ol>\n <li>\n <a href=\"#about-the-project\">About The Project</a>\n <ul>\n <li><a href=\"#built-with\">Built With</a></li>\n </ul>\n </li>\n <li>\n <a href=\"#getting-started\">Getting Started</a>\n <ul>\n <li><a href=\"#prerequisites\">Prerequisites</a></li>\n <li><a href=\"#installation\">Installation</a></li>\n </ul>\n </li>\n <li><a href=\"#usage\">Usage</a></li>\n <li><a href=\"#roadmap\">Roadmap</a></li>\n <li><a href=\"#contributing\">Contributing</a></li>\n <li><a href=\"#license\">License</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n <li><a href=\"#acknowledgments\">Acknowledgments</a></li>\n </ol>\n</details> -->\n\n\n\n<!-- ABOUT THE PROJECT -->\n## About The Project\n\nYou don't have time to learn Dockerfiles, we get it. \n\nBut don't keep your docker images around, they will be messed up eventually. If you ever want to make reproducible docker images but have no patience to learn Dockerfiles and docker-compose, PeiDocker is for you.\n\nPeiDocker (\u914d docker) helps you script and organize your docker image building process with both CLI and modern Web GUI interfaces. It streamlines the building process and allows you to customize the image building and running behaviours using shell scripts. \n\nWith PeiDocker, you can:\n\n- **Custom Script Hooks**: Run custom scripts during image build, first run, each time the container starts or when you SSH into the container, without knowing Dockerfiles\n\n- **Painless Configuration**: Quickly setup SSH configurations for multiple users and authentication methods, changing apt repositories, pip repositories, mounts using docker volumes, system-wide proxy, etc.\n\n- **Dynamic Storage Support**: Use external storage in development, and transparently switch to internal storage in deployment\n\n- **Configure With GUI**: Use the modern web interface to create your reusable docker building files without writing Dockerfiles\n\n### Examples\n\nGiven the below `user_config.yml` file, PeiDocker will generate a `docker-compose.yml` file for you, using which you will build two docker images `pei-cn-demo:stage-1` and `pei-cn-demo:stage-2` with many useful features.\n\n```yaml\n# pei-docker configuration file as demo\n# in-container paths are relative to /installation directory\n\nstage_1:\n # input/output image settings\n image:\n base: ubuntu:24.04\n output: pei-cn-demo:stage-1\n\n # ssh settings\n ssh:\n enable: true\n\n # you can configure ssh port in container (default is 22 if not set)\n # useful if you want to use network-mode=host, avoid conflicting with host services\n port: 333\n\n # mapped port on host machine, if given, this port will be mapped to the container SSH port\n host_port: 2222\n\n # ssh users, the key is user name\n users:\n me:\n password: '123456'\n\n # using this will add your public key to the container as authorized key, you can also specify a file path\n # pubkey_file: '~' \n\n # you can also use inline public key text\n # pubkey_text: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC...'\n \n root: # allow you to ssh as root\n password: root\n\n # apt settings\n apt:\n # use 'tuna' or 'aliyun' apt mirror for faster downloads in China\n repo_source: 'aliyun'\n keep_repo_after_build: true # keep the apt source file after build\n\n # custom scripts\n custom:\n # scripts run during build\n # Scripts can include parameters: 'script.sh --param1=value1 --param2=\"value with spaces\"'\n on_build: \n - 'stage-1/custom/install-dev-tools.sh' # just an example, you can safely remove this\n \nstage_2:\n\n # input/output image settings\n image:\n output: pei-cn-demo:stage-2\n\n # dynamic storage settings\n # they define the physical location of `/soft/app`, `/soft/data` and `/soft/workspace` point to, your these paths can be switched among different storage locations, so that you can use external storage in development, and move them to internal storage in deployment\n storage:\n app: # /soft/app will be kept as part of the image\n type: image\n data: # mounting /your/data/path to /soft/data in container\n type: host\n host_path: /your/data/path\n workspace: # /soft/workspace will be mounted to a docker automatic volume\n type: auto-volume\n\n # mount external volumes to container\n mount:\n # mounting docker automatic volume to /home/me\n # so that you do not have to commit your docker image everytime some configuration changes\n home_me:\n type: auto-volume # auto-volume, manual-volume, host\n dst_path: /home/me\n\n custom:\n # scripts run during build\n # Scripts can include parameters: 'script.sh --param1=value1 --param2=\"value with spaces\"'\n on_build: \n # install pixi, a lightweight python package manager\n - 'stage-2/system/pixi/install-pixi.bash'\n\n # configure pixi to use tuna mirror in China\n - 'stage-2/system/pixi/set-pixi-repo-tuna.bash' # set pixi repo to tuna, a fast mirror in China\n```\n\nAfter you build the images, if you start `pei-cn-demo:stage-1` or `pei-cn-demo:stage-2` with `docker compose`, you will have fully functional docker containers with the following features:\n\n#### pei-cn-demo:stage-1 container features\n\n- SSH server running on port 333 inside container, mapped to port 2222 on host, with a user `me` and password `123456`, you can also login as root with password `root`\n- `apt` source is switched to `aliyun` mirror for faster downloads in China\n- development tools installed via `install-dev-tools.sh` script, into system dirs\n\n#### pei-cn-demo:stage-2 container features\n\n- includes all features of `stage-1`\n- `/soft/data` is mounted to `/your/data/path` on host, so you can use external storage in development\n- `/soft/workspace` is mounted to a docker automatic volume, so you can use it as a persistent workspace\n- `/home/me` is mounted to a docker automatic volume, so during use of the container you can persist your user-specific settings without committing the image\n- `pixi` package manager installed, with `tuna` mirror configured, so you can install python packages easily, via the `on_build` scripts\n\nYou can further customize the `user_config.yml` file to add more features, mainly using the `custom` section to run your own scripts during build, first run, container starts or login, so you ONLY need to master bash scripting to maintain your docker images build process, no need to learn Dockerfiles!\n\n_For details, please refer to the [Documentation](https://igamenovoer.github.io/PeiDocker/)_\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>\n\n\n\n<!-- ### Built With\n\n* [![Next][Next.js]][Next-url]\n* [![React][React.js]][React-url]\n* [![Vue][Vue.js]][Vue-url]\n* [![Angular][Angular.io]][Angular-url]\n* [![Svelte][Svelte.dev]][Svelte-url]\n* [![Laravel][Laravel.com]][Laravel-url]\n* [![Bootstrap][Bootstrap.com]][Bootstrap-url]\n* [![JQuery][JQuery.com]][JQuery-url]\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p> -->\n\n\n\n<!-- GETTING STARTED -->\n## Getting Started\n\n### Installation\n\n#### Option 1: Install from PyPI (Recommended)\n\n```sh\n# for ordinary python users, or conda users\npip install pei-docker\n\n# if you are using pixi, you need to install via pipx\npixi global install pipx # install pipx if you haven't done so\npipx install pei-docker # then install pei-docker\n```\n\n#### Option 2: Install from Source\n\n```sh\ngit clone https://github.com/igamenovoer/PeiDocker.git\ncd PeiDocker\npip install -e .\n```\n\n### Prerequisites\n\n- Docker and docker-compose installed on your machine\n- Python 3.11 or higher\n\n<!-- USAGE EXAMPLES -->\n## Usage\n\n### Web GUI (Experimental)\n\nThe modern web interface provides an intuitive way to manage PeiDocker projects:\n\n```sh\n# Start GUI on auto-selected port, in browser\npei-docker-gui start\n\n# Or specify a custom port\npei-docker-gui start --port 8080\n\n# Load an existing project\npei-docker-gui start --project-dir /path/to/my/project\n\n# Run in native desktop mode (requires pywebview)\n# You need this to use the \"Browse\" feature to locate directories\npei-docker-gui start --native\n```\n\n### Command Line Interface\n\nCreate a new project:\n\n```sh\n# Create a new project in ./build or any other directory\npei-docker-cli create -p /your/build/dir\n```\n\nEdit the configuration file `user_config.yml` in the project directory (e.g.,`/your/build/dir`) according to your needs. Generate the `docker-compose.yml` file in the project directory:\n\n```sh\n# From within the project directory\ncd /your/build/dir\npei-docker-cli configure\n\n# Or specify project directory explicitly\npei-docker-cli configure -p /your/build/dir\n\n# Optional: Use a different config file\npei-docker-cli configure -p /your/build/dir -c my-custom-config.yml\n```\n\nBuild the docker images. There are two images to be built, namely `stage-1` and `stage-2`. `stage-1` is intended to be a base image, installing system apps using `apt install`, `stage-2` is intended to be a final image based on `stage-1`, installing custom apps using downloaded packages like `.deb`. External storage is only available in `stage-2`.\n\n```sh\ncd /your/build/dir\n\n# Using docker compose to build the images. \n# To see all the output, use --progress=plain\n# To cleanly rebuild the images, use --no-cache\n\n# Build the stage-1 image\n# By default, the image is named pei-image:stage-1, you can change it in user_config.yml\ndocker compose build stage-1 --progress=plain\n\n# Build the stage-2 image\n# By default, the image is named pei-image:stage-2\ndocker compose build stage-2 --progress=plain\n```\n\nRun the docker container:\n\n```sh\n# inside project directory, such as /your/build/dir\n\n# Typically you will run the stage-2 container\n# You can also up the stage-1 container as well.\ndocker compose up stage-2\n```\n\nIf you have setup SSH in `user_config.yml`, now you can SSH into the container:\n\n```sh\n# by default, it will create a user named `me` with password '123456'\n# and map the port 2222 to the container's port 22\n\nssh me@127.0.0.1 -p 2222\n```\n\nThat's it, you are good to go.\n\n_For more examples, please refer to the [Documentation](https://igamenovoer.github.io/PeiDocker/)_\n\n<p align=\"right\">(<a href=\"#readme-top\">back to top</a>)</p>",
"bugtrack_url": null,
"license": "MIT",
"summary": "A sophisticated Docker automation framework that transforms YAML configurations into reproducible containerized environments",
"version": "1.1.1",
"project_urls": {
"Documentation": "https://github.com/igamenovoer/PeiDocker",
"Homepage": "https://github.com/igamenovoer/PeiDocker",
"Issues": "https://github.com/igamenovoer/PeiDocker/issues",
"Repository": "https://github.com/igamenovoer/PeiDocker"
},
"split_keywords": [
"automation",
" containerization",
" devops",
" docker",
" yaml"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c9050a2ab641570bf88760f2bff9b91a7b212922524d3091a003aa847d0dccdf",
"md5": "84d502c7a86b10fc548822087ab3af82",
"sha256": "7c9a8bcdb745d2c630048086a44c542734b1f85729092ab43f0577a5720b29da"
},
"downloads": -1,
"filename": "pei_docker-1.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "84d502c7a86b10fc548822087ab3af82",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 270805,
"upload_time": "2025-08-08T10:22:22",
"upload_time_iso_8601": "2025-08-08T10:22:22.758377Z",
"url": "https://files.pythonhosted.org/packages/c9/05/0a2ab641570bf88760f2bff9b91a7b212922524d3091a003aa847d0dccdf/pei_docker-1.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "591a2102e2d9cefca6c7e275cd6d2971bc91d513ca5065ba3a5e44d2cc2db104",
"md5": "221c3bdf15dbb119bf1b845d7c631b0f",
"sha256": "337e358aa7b3d3fd9214d1a775915b66906b2840747713ed8e1fb472456aa0fb"
},
"downloads": -1,
"filename": "pei_docker-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "221c3bdf15dbb119bf1b845d7c631b0f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 1123804,
"upload_time": "2025-08-08T10:22:24",
"upload_time_iso_8601": "2025-08-08T10:22:24.538895Z",
"url": "https://files.pythonhosted.org/packages/59/1a/2102e2d9cefca6c7e275cd6d2971bc91d513ca5065ba3a5e44d2cc2db104/pei_docker-1.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-08 10:22:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "igamenovoer",
"github_project": "PeiDocker",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pei-docker"
}