Skip to content
Merged
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
4 changes: 2 additions & 2 deletions include/download-instructions/linux-docker-web-default.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
</p>
<pre><code class="language-bash line-numbers">
# Pull the PHP Docker image.
docker pull php-fpm
docker pull php:fpm

Comment on lines 5 to 7
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The explicit docker pull is not even necessary. docker run will pull implicitly (but will not update when already pulled).

# Launch a container with PHP.
docker run --rm -it --entrypoint bash php-fpm
docker run --rm -it --entrypoint bash php:fpm
</code></pre>