We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6c051 commit 2292329Copy full SHA for 2292329
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+# 1.2.1 (2020-05-27)
2
+
3
+* Bug fix: Avoid abrupt container termination due to use of default
4
+ entrypoint by using `/bin/sh` as an entrypoint.
5
6
7
# 1.2.0 (2020-05-27)
8
9
* Moved methods in `substitution` module into `ArgumentResolver` class.
src/roswire/proxy/container.py
@@ -145,6 +145,7 @@ def _container(self,
145
'/bin/sh',
146
user='root',
147
name=uuid,
148
+ entrypoint='/bin/sh -c',
149
volumes={dir_host_shared: {'bind': '/.roswire', 'mode': 'rw'}},
150
ports=ports,
151
stdin_open=True,
0 commit comments