Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit f44105c

Browse files
authored
Replace kill container with stop container command (#14)
1 parent 42b8ac1 commit f44105c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ docker exec webvalidate dotnet ../webvalidate.dll -s http://ngsa:8080 -f benchma
143143
## Shared Volumes
144144

145145
```bash
146-
# Kill container
147-
docker kill webvalidate
146+
# Stop container
147+
docker stop webvalidate
148148

149149
# Verify container was removed when stopped
150150
docker ps -a
@@ -221,8 +221,8 @@ docker commit webvalidate-fix docker101-webv:fix
221221
# Verify new image
222222
docker images
223223

224-
# Kill container to re-use name
225-
docker kill webvalidate-fix
224+
# Stop container to re-use name
225+
docker stop webvalidate-fix
226226

227227
# Run newly create image in container
228228
# --name - Naming the container

0 commit comments

Comments
 (0)