Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated typos in container names #2

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions labs/compose-limits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You'll see the two containers start. Browse to the app at http://localhost:8088
<summary>Not sure how?</summary>

```
docker logs rng_rng-api_1
docker logs rng-rng-api-1

docker ps -a
```
Expand All @@ -46,7 +46,7 @@ docker ps -a
You can restart a stopped container manually:

```
docker start rng_rng-api_1
docker start rng-rng-api-1
```

> Now the app will work again, but only for three calls, then the API container will exit and you'll need to start it again.
Expand Down Expand Up @@ -113,7 +113,7 @@ There are multiple API containers, so Docker adds all their IP addresses to the
You can see all the API container IPs in the DNS response in the web container:

```
docker exec -it rng_rng-web_1 nslookup rng-api
docker exec -it rng-rng-web-1 nslookup rng-api
```

> If you repeat that call you'll see the order of the addresses is randomized, which helps spread the load if the client just uses the first address in the list.
Expand Down Expand Up @@ -154,4 +154,4 @@ Cleanup by removing all containers:

```
docker rm -f $(docker ps -aq)
```
```