You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let me know how you got on, if you get stuck on anything,
@@ -861,6 +861,7 @@ The docker daemon lets you list all the currently running containers
861
861
with `docker ps`:
862
862
863
863
[role="skipme small-code"]
864
+
[subs="quotes"]
864
865
----
865
866
$ *docker ps*
866
867
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
@@ -873,8 +874,9 @@ and a randomly-generated name (you can override that if you want to).
873
874
We can use the ID or the name to kill the container with `docker kill`:
874
875
875
876
[role="skipme"]
877
+
[subs="quotes"]
876
878
----
877
-
$ docker kill 0818e1b8e9bf
879
+
$ *docker kill 0818e1b8e9bf*
878
880
0818e1b8e9bf
879
881
----
880
882
@@ -904,7 +906,7 @@ What's going on here? Time for a little debugging.
904
906
905
907
906
908
907
-
=== Debugging a Container Networking Problems
909
+
=== Debugging Container Networking Problems
908
910
909
911
First, let's try and take a look ourselves, in our browser, by going to http://localhost:8888/:
910
912
@@ -955,7 +957,7 @@ Starting development server at http://127.0.0.1:8888/
955
957
956
958
A quick run of the FT or check in our browser will show us that nope, that doesn't work either.
957
959
Let's try an even lower-level smoke test, the traditional Unix utility `curl`.
958
-
It's a command-line tool for making HTTP requests. Try it on your own computer first:
960
+
It's a command-line tool for making HTTP requests.footnote:[`curl` can make many other types of requests. For details see https://man7.org/linux/man-pages/man1/curl.1.html[curl manual].] Try it on your own computer first:
959
961
960
962
[role="ignore-errors"]
961
963
[subs="specialcharacters,macros"]
@@ -1484,7 +1486,7 @@ Tests and small steps take some of the uncertainty out of deployment::
1484
1486
1485
1487
Some typical pain points--networking, ports, static files, and the database::
1486
1488
Moving from the local django development server to a container
1487
-
is chance to rehearse the fiddliness of configuring networking
1489
+
is a chance to rehearse the fiddliness of configuring networking
1488
1490
in a deployed environment.
1489
1491
It's also a chance to think about persistence and the database,
0 commit comments