Skip to content

Commit

Permalink
🐛 Silence docker start
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantanen committed Mar 9, 2025
1 parent 9ef6c89 commit fa580f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/waypoint/src/waypoint_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def start(rebuild: bool = False) -> None:
sys.exit(1)
elif waypoint_state == 1:
try:
subprocess.run(["docker", "start", CONTAINER_NAME], check=True)
subprocess.run(["docker", "start", CONTAINER_NAME],stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, check=True)
subprocess.run(["docker", "exec", "-it", CONTAINER_NAME, "bash"], check=False)
except subprocess.CalledProcessError:
print("\nError: Failed to start waypoint container")
Expand Down

0 comments on commit fa580f0

Please sign in to comment.