diff --git a/subjects/forum/audit/README.md b/subjects/forum/audit/README.md index dab072472..ce2578100 100644 --- a/subjects/forum/audit/README.md +++ b/subjects/forum/audit/README.md @@ -56,7 +56,7 @@ ###### Does the project have Dockerfiles? -##### Try to run the command `"docker image build [OPTINS] PATH | URL | -"` to build the image using using the project Dockerfiles and run the command `"docker images"` to see images. +##### Try to run the command `"docker image build [OPTINS] PATH | URL | -"` to build the image using the project Dockerfiles and run the command `"docker images"` to see images. ``` student$ docker images @@ -64,19 +64,19 @@ REPOSITORY TAG IMAGE ID CREA latest 85a65d66ca39 7 seconds ago 795MB ``` -###### Does all images build as above? +###### Did all images build as above? ##### Try running the command `"docker container run [OPTIONS] IMAGE [COMMAND] [ARG...]"` to start the containers using the images just created and run the command `"docker ps -a"` to see containers. ``` student$ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -cc8f5dcf760f "./server" 6 seconds ago Up 6 seconds 0.0.0.0:8080->8080/tcp ascii-art-web +cc8f5dcf760f "./server" 6 seconds ago Up 6 seconds 0.0.0.0:8080->8080/tcp forum ``` -###### Is the docker containers running as above? +###### Are the Docker containers running as above? -###### Does the project present no [unused object](https://docs.docker.com/config/pruning/)? +###### Does the project have no [unused objects](https://docs.docker.com/config/pruning/)? #### Functional