gradle-use-python-plugin icon indicating copy to clipboard operation
gradle-use-python-plugin copied to clipboard

Add Support for Attaching Docker Volumes

Open OmanDominik opened this issue 1 year ago • 3 comments

Proposed Feature: Introduce a python.docker.volumes configuration option to allow users to specify volumes in the form of mappings, e.g., host_path:container_path. For example:

python { docker { image = "python:3.9" volumes = ["/path/on/host:/path/in/container", "/another/host/path:/another/container/path"] } }

OmanDominik avatar Dec 04 '24 09:12 OmanDominik