diff options
author | Marcel Amirault <mamirault@gitlab.com> | 2019-07-08 00:41:33 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-07-08 00:41:33 +0000 |
commit | 518e2b81e38b96d6afa508b39e30dc40f1b4b6c0 (patch) | |
tree | 2cee8313a2f4c7133b924600daa4672bbc4c36e1 /doc/ci/examples/php.md | |
parent | b102e24aea9d913924c927cc54ec3519ded246ca (diff) | |
download | gitlab-ce-518e2b81e38b96d6afa508b39e30dc40f1b4b6c0.tar.gz |
Update redirected links in CE part 1
First MR in a series updating all redirected links
in CE documentation to the destination URLs
Diffstat (limited to 'doc/ci/examples/php.md')
-rw-r--r-- | doc/ci/examples/php.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ci/examples/php.md b/doc/ci/examples/php.md index c459bb7001f..0b9e9e93e55 100644 --- a/doc/ci/examples/php.md +++ b/doc/ci/examples/php.md @@ -64,7 +64,7 @@ docker-php-ext-install pdo_mysql You might wonder what `docker-php-ext-install` is. In short, it is a script provided by the official php docker image that you can use to easily install extensions. For more information read the documentation at -<https://hub.docker.com/r/_/php/>. +<https://hub.docker.com/_/php>. Now that we created the script that contains all prerequisites for our build environment, let's add it in `.gitlab-ci.yml`: @@ -96,7 +96,7 @@ Finally, commit your files and push them to GitLab to see your build succeeding The final `.gitlab-ci.yml` should look similar to this: ```yaml -# Select image from https://hub.docker.com/r/_/php/ +# Select image from https://hub.docker.com/_/php image: php:5.6 before_script: @@ -286,7 +286,7 @@ that runs on [GitLab.com](https://gitlab.com) using our publicly available Want to hack on it? Simply fork it, commit, and push your changes. Within a few moments the changes will be picked by a public runner and the job will begin. -[php-hub]: https://hub.docker.com/r/_/php/ +[php-hub]: https://hub.docker.com/_/php [phpenv]: https://github.com/phpenv/phpenv [phpenv-installation]: https://github.com/phpenv/phpenv#installation [php-example-repo]: https://gitlab.com/gitlab-examples/php |