Skip to content

Commit

Permalink
fix: adding --rm to docker-run.sh script.
Browse files Browse the repository at this point in the history
This will remove the container when it ends.

#407
  • Loading branch information
tegefaulkes committed Jul 27, 2022
1 parent 892ca58 commit 9a55580
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/docker-run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env bash

exec docker run -i \
exec docker run \
--interactive \
--rm \
--network host \
--pid host \
--userns host \
Expand Down

0 comments on commit 9a55580

Please sign in to comment.