Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ To prevent zombie reaping processes i run [dumb-init](https://github.com/Yelp/du

**Map the current directory inside the Container**

`docker run -it ${PWD}:/data ellerbrock/bash-it`
`docker run -it -v ${PWD}:/data ellerbrock/bash-it`

**Map a [Docker Volume](https://docs.docker.com/engine/tutorials/dockervolumes/)**

`docker run -it myVolName:/app ellerbrock/bash-it`
`docker run -it -v myVolName:/app ellerbrock/bash-it`

**Copy Data between Volumes**

Expand Down
2 changes: 1 addition & 1 deletion test/bash-it.bats
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# -----------
# Simple test with bats

@test "check if we can execute bash inside the container" {
@test "check if we can execute bash-it inside the container" {
run docker run -it ellerbrock/bash-it --help
[ "$status" -eq 0 ]
}
Expand Down