Releases: ChrisTimperley/dockerblade
Releases · ChrisTimperley/dockerblade
v0.6.2
v0.6.1
v0.6.1 (2024-05-23)
- silence stdout/stderr when copying files via
copy_to_host
andcopy_from_host
v0.6.0
v0.6.0 (2024-05-20)
- switched from Pipenv to Poetry
- updated linting config to use Ruff and MyPy 1.1.0
- fixed a bug that prevented
time_limit
andkill_after
from being used by subprocess.check_output
v0.5.7
v0.5.6
v0.5.5
v0.5.5 (2020-07-08)
- updated default
url
forDockerDaemon
to be the value of the
DOCKER_HOST
environment variable, if present. If theDOCKER_HOST
environment variable is not present,unix://var/run/docker.sock
will be used instead.
v0.5.4
v0.5.4 (2020-06-29)
- added
command
parameter toprovision
method ofDockerDaemon
.
v0.5.3
v0.5.3 (2020-06-29)
- added
name
attribute toContainer
class. - added
ports
,user
,name
,environment
, andentrypoint
parameters to
provision
method ofDockerDaemon
. - bug fix: added
py.typed
toMANIFEST.in
to fix PEP 561 support. - added
__enter__
and__exit__
toContainer
.
v0.5.2
v0.5.2 (2020-06-09)
- improved performance of
copy_to_host
,copy_from_host
, andread
methods
inFileSystem
. - added
network_mode
parameter toprovision
method ofDockerDaemon
. - added
network_mode
property toContainer
.
v0.5.1
v0.5.1 (2020-06-01)
- bug fix: lack of defensive copying in Shell constructor can lead to
crashes due to use of mappingproxy type.