Skip to content

Commit

Permalink
fix: remove alpine container remainder (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schille committed Mar 22, 2022
1 parent 86cf7b9 commit 45b6c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/gefyra/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
# docker for mac/win publishes ports on a special internal ip
try:
_ip_output = self.DOCKER.containers.run(
"alpine", "getent hosts host.docker.internal"
"alpine", "getent hosts host.docker.internal", remove=True
)
_ip = _ip_output.decode("utf-8").split(" ")[0]
self.CARGO_ENDPOINT = f"{_ip}:31820"
Expand Down

0 comments on commit 45b6c2f

Please sign in to comment.