diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2020-05-30 13:48:27 -0400 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2020-05-30 13:51:44 -0400 |
commit | bc1f5ef36e363ea65d822669503e2452df8bafce (patch) | |
tree | 21a49237881969f0132a86ab45c347e6ce0f1867 /docs | |
parent | 9037908b784d7db790cb6cfbb6a84cfddb6b9304 (diff) | |
download | podman-bc1f5ef36e363ea65d822669503e2452df8bafce.tar.gz podman-bc1f5ef36e363ea65d822669503e2452df8bafce.tar.bz2 podman-bc1f5ef36e363ea65d822669503e2452df8bafce.zip |
[CI:DOCS] update httpd location in tutorial
Update the reference to the httpd in the Podman tutorial.
This just bumps it to F29 for now to get things working,
I'd prefer to get something set up in quay.io to make it
more resistant to Fedora version changes.
Fixes: #6439
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorials/podman_tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/podman_tutorial.md b/docs/tutorials/podman_tutorial.md index 169cefc0e..6605d3359 100644 --- a/docs/tutorials/podman_tutorial.md +++ b/docs/tutorials/podman_tutorial.md @@ -24,7 +24,7 @@ page. podman run -dt -p 8080:8080/tcp -e HTTPD_VAR_RUN=/var/run/httpd -e HTTPD_MAIN_CONF_D_PATH=/etc/httpd/conf.d \ -e HTTPD_MAIN_CONF_PATH=/etc/httpd/conf \ -e HTTPD_CONTAINER_SCRIPTS_PATH=/usr/share/container-scripts/httpd/ \ - registry.fedoraproject.org/f27/httpd /usr/bin/run-httpd + registry.fedoraproject.org/f29/httpd /usr/bin/run-httpd ``` Because the container is being run in detached mode, represented by the *-d* in the `podman run` command, Podman will print the container ID after it has run. Note that we use port forwarding to be able to |