Prefect integrations for interacting with Docker.
Project description
prefect-docker
Welcome!
Prefect integrations for working with Docker.
Note! The DockerRegistryCredentials
in prefect-docker
is a unique block, separate from the DockerRegistry
in prefect
core. While DockerRegistry
implements a few functionality from both DockerHost
and DockerRegistryCredentials
for convenience, it does not allow much configuration to interact with a Docker host.
Do not use DockerRegistry
with this collection. Instead, use DockerHost
and DockerRegistryCredentials
.
Getting Started
Python setup
Requires an installation of Python 3.8+.
We recommend using a Python virtual environment manager such as pipenv, conda, or virtualenv.
These tasks are designed to work with Prefect 2. For more information about how to use Prefect, please refer to the Prefect documentation.
Installation
Install prefect-docker
with pip
:
pip install prefect-docker
Then, register to view the block on Prefect Cloud:
prefect block register -m prefect_docker
Note, to use the load
method on Blocks, you must already have a block document saved through code or saved through the UI.
Pull image, and create, start, log, stop, and remove Docker container
from prefect import flow, get_run_logger
from prefect_docker.images import pull_docker_image
from prefect_docker.containers import (
create_docker_container,
start_docker_container,
get_docker_container_logs,
stop_docker_container,
remove_docker_container,
)
@flow
def docker_flow():
logger = get_run_logger()
pull_docker_image("prefecthq/prefect", "latest")
container = create_docker_container(
image="prefecthq/prefect", command="echo 'hello world!' && sleep 60"
)
start_docker_container(container_id=container.id)
logs = get_docker_container_logs(container_id=container.id)
logger.info(logs)
stop_docker_container(container_id=container.id)
remove_docker_container(container_id=container.id)
return container
Use a custom Docker Host to create a Docker container
from prefect import flow
from prefect_docker import DockerHost
from prefect_docker.containers import create_docker_container
@flow
def create_docker_container_flow():
docker_host = DockerHost(
base_url="tcp://127.0.0.1:1234",
max_pool_size=4
)
container = create_docker_container(
docker_host=docker_host,
image="prefecthq/prefect",
command="echo 'hello world!'"
)
create_docker_container_flow()
Resources
If you encounter any bugs while using prefect-docker
, feel free to open an issue in the prefect repository.
If you have any questions or issues while using prefect-docker
, you can find help in the Prefect Slack community.
Development
If you'd like to install a version of prefect-docker
for development, clone the repository and perform an editable install with pip
:
git clone https://github.com/PrefectHQ/prefect-docker.git
cd prefect-docker/
pip install -e ".[dev]"
# Install linting pre-commit hooks
pre-commit install
Testing
The prefect-docker
tests assume that you have a development image of Prefect
available on the Docker daemon, and that it includes an installation of the same
version of both Python and prefect
that you are currently testing. You can build a
compatible image from your source tree with:
prefect dev build-image
To run the tests, use the following command:
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file prefect_docker-0.5.5.tar.gz
.
File metadata
- Download URL: prefect_docker-0.5.5.tar.gz
- Upload date:
- Size: 36.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1104760b9f64195e19e6ea2e7c2fe0036d2eca804cb8303ac22cbd7db9f81e7b |
|
MD5 | 8c8c2599ada17aea0d6a2eff5162f509 |
|
BLAKE2b-256 | 74cc5b081ee4dc2e0830da50e1e0944363dd01e447401eae6e5b672f560b5c26 |
File details
Details for the file prefect_docker-0.5.5-py3-none-any.whl
.
File metadata
- Download URL: prefect_docker-0.5.5-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8458582f25d51373c2aa159549253fc1994fa3513bb58716b219cd3f339faa73 |
|
MD5 | 701f30df093ae60c57c147ee01111deb |
|
BLAKE2b-256 | eeec1446d3bdf16ca6e194dd0789a54969b3d71613ae2d0f5b8e502559cf0971 |