Skip to content

Commit

Permalink
Add --rm so that container is removed after run
Browse files Browse the repository at this point in the history
  • Loading branch information
ofaurax committed Apr 29, 2024
1 parent d41d847 commit 44862bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ you can run the current code in docker

Build it: `sudo docker build . -t arvin2`

Run it: `sudo docker run --name arvin2 --network host -it arvin2`. It
Run it: `sudo docker run --rm --name arvin2 --network host -it arvin2`. It
will be available on `http://localhost:1912`

Clean it: `sudo docker container remove arvin2`
Clean it (shouldn't be needed with `--rm`): `sudo docker container remove arvin2`

## Contributors

Expand Down

0 comments on commit 44862bc

Please sign in to comment.