Skip to main content

Asynchronous Docker management for WSL2 using pywershell

Project description

DockwerShell

Asynchronous Docker management for Debian-based WSL2 using the [pywershell] engine under the hood.

import asyncio
from dockwershell.core import AsyncDocker

async def main():
    # get singleton instance
    docker = await AsyncDocker.get()

    # print version (auto-installs if needed)
    version = await docker.version
    print("Docker version:", version)

    # list images
    images = await docker.images
    print("Available images:", images)

    # run an ad‐hoc command
    await docker.run("ps -a")
from pathlib import Path
from dockwershell.manager import DockerManager

async def build_and_run():
    mgr = DockerManager()
    img = await mgr.new(
        dockerfile=Path("Dockerfile.app"),
        build_args="ENV=prod",
        rebuild=False,
        run_args="-d -p 8000:8000"
    )
    result = await img.run()
    print(result.str)

asyncio.run(build_and_run())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dockwershell-0.4.0.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dockwershell-0.4.0-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file dockwershell-0.4.0.tar.gz.

File metadata

  • Download URL: dockwershell-0.4.0.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for dockwershell-0.4.0.tar.gz
Algorithm Hash digest
SHA256 6e6b90c1cc4f9b5aeaaad6d23d69881ad0bf81cba81871ea762bb475a6a6a964
MD5 95e167eb18d880e2e32331d11990e319
BLAKE2b-256 e1495059286c5a7939bbc3a7760adaba0115e0ca10a1c7361b12fba53c800184

See more details on using hashes here.

File details

Details for the file dockwershell-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: dockwershell-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 6.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for dockwershell-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 92971e15b4b7f730d9f20bd153852258166266888d0300656681317ed41bd7c7
MD5 c10069eebcdcd70646caf84ca13d6b81
BLAKE2b-256 c7bd124a7e9917002f179376803a31758992233454bd52658df0734001d10ada

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page