Skip to content

Commit 68f724d

Browse files
committed
fix some callouts
1 parent 506347c commit 68f724d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

chapter_11_ansible.asciidoc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ Here's how
885885
ports: 80:8888
886886
887887
- name: Run migration inside container
888-
community.docker.docker_container_exec: # <4>
888+
community.docker.docker_container_exec: # <3>
889889
container: superlists
890890
command: ./manage.py migrate
891891
----
@@ -894,12 +894,10 @@ Here's how
894894
<1> We use `file` with `state=touch` to make sure a placeholder file exists
895895
before we try and mount it in
896896

897-
<2> Here is the `mounts` config, which works a lot like the `--mount` flag to `docker run`.
897+
<2> Here is the `mounts` config, which works a lot like the `--mount` flag to
898+
`docker run`.
898899

899-
<3> We use the `expanduser` filter to get the absolute path,
900-
otherwise docker will complain about the `~`.
901-
902-
<2> And we use the API for `docker exec` to run the migration command inside
900+
<3> And we use the API for `docker exec` to run the migration command inside
903901
the container.
904902

905903

0 commit comments

Comments
 (0)