We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 629bbbf commit 020ac41Copy full SHA for 020ac41
README.md
@@ -19,7 +19,7 @@ import docker_patch
19
def patcher_func(container):
20
print(f'patch container "{container}"')
21
22
- container.exec_run('/bin/sh -c "echo \"hi from patch function!\" >> patched.txt"')
+ container.exec_run('/bin/sh -c \'echo "hi from module 1" >> patched.txt\'')
23
```
24
25
You can register multiple patchers, and then use it in one of these options:
docker_patch/__init__.py
@@ -8,7 +8,7 @@
8
registered_patchers: typing.List[typing.Callable] = []
9
10
11
-__version__ = '0.1'
+__version__ = '0.1.1'
12
13
14
def default_on_error(e: Exception):
0 commit comments