Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
95221312
Commit
95221312
authored
May 07, 2016
by
Takuya Noguchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Docker Hub links.
parent
2e116227
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
13 deletions
+13
-13
doc/ci/docker/using_docker_images.md
doc/ci/docker/using_docker_images.md
+3
-3
doc/ci/examples/php.md
doc/ci/examples/php.md
+3
-3
doc/ci/services/mysql.md
doc/ci/services/mysql.md
+2
-2
doc/ci/services/postgres.md
doc/ci/services/postgres.md
+1
-1
doc/ci/services/redis.md
doc/ci/services/redis.md
+1
-1
docker/README.md
docker/README.md
+3
-3
No files found.
doc/ci/docker/using_docker_images.md
View file @
95221312
...
...
@@ -273,7 +273,7 @@ creation.
[
Docker Fundamentals
]:
https://docs.docker.com/engine/understanding-docker/
[
hub
]:
https://hub.docker.com/
[
linking-containers
]:
https://docs.docker.com/engine/userguide/networking/default_network/dockerlinks/
[
tutum/wordpress
]:
https://
registry.hub.docker.com/u
/tutum/wordpress/
[
postgres-hub
]:
https://
registry.hub.docker.com/u/library
/postgres/
[
mysql-hub
]:
https://
registry.hub.docker.com/u/library
/mysql/
[
tutum/wordpress
]:
https://
hub.docker.com/r
/tutum/wordpress/
[
postgres-hub
]:
https://
hub.docker.com/r/_
/postgres/
[
mysql-hub
]:
https://
hub.docker.com/r/_
/mysql/
[
runner-priv-reg
]:
https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/docs/configuration/advanced-configuration.md#using-a-private-docker-registry
doc/ci/examples/php.md
View file @
95221312
...
...
@@ -60,7 +60,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 easilly install
extensions. For more information read the the documentation at
<https://hub.docker.com/_/php/>
.
<https://hub.docker.com/
r/
_/php/>
.
Now that we created the script that contains all prerequisites for our build
environment, let's add it in
`.gitlab-ci.yml`
:
...
...
@@ -92,7 +92,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/_/php/
# Select image from https://hub.docker.com/
r/
_/php/
image
:
php:5.6
before_script
:
...
...
@@ -278,7 +278,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 build will begin.
[
php-hub
]:
https://hub.docker.com/_/php/
[
php-hub
]:
https://hub.docker.com/
r/
_/php/
[
phpenv
]:
https://github.com/phpenv/phpenv
[
phpenv-installation
]:
https://github.com/phpenv/phpenv#installation
[
php-example-repo
]:
https://gitlab.com/gitlab-examples/php
doc/ci/services/mysql.md
View file @
95221312
...
...
@@ -16,7 +16,7 @@ services:
-
mysql:latest
variables
:
# Configure mysql environment variables (https://hub.docker.com/_/mysql/)
# Configure mysql environment variables (https://hub.docker.com/
r/
_/mysql/)
MYSQL_DATABASE
:
el_duderino
MYSQL_ROOT_PASSWORD
:
mysql_strong_password
```
...
...
@@ -114,5 +114,5 @@ available [shared runners](../runners/README.md).
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 build will begin.
[
hub-mysql
]:
https://hub.docker.com/_/mysql/
[
hub-mysql
]:
https://hub.docker.com/
r/
_/mysql/
[
mysql-example-repo
]:
https://gitlab.com/gitlab-examples/mysql
doc/ci/services/postgres.md
View file @
95221312
...
...
@@ -110,5 +110,5 @@ available [shared runners](../runners/README.md).
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 build will begin.
[
hub-pg
]:
https://hub.docker.com/_/postgres/
[
hub-pg
]:
https://hub.docker.com/
r/
_/postgres/
[
postgres-example-repo
]:
https://gitlab.com/gitlab-examples/postgres
doc/ci/services/redis.md
View file @
95221312
...
...
@@ -65,5 +65,5 @@ 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 build will begin.
[
hub-redis
]:
https://hub.docker.com/_/redis/
[
hub-redis
]:
https://hub.docker.com/
r/
_/redis/
[
redis-example-repo
]:
https://gitlab.com/gitlab-examples/redis
docker/README.md
View file @
95221312
# GitLab Docker images
*
The official GitLab Community Edition Docker image is
[
available on Docker Hub
](
https://
registry.hub.docker.com/u
/gitlab/gitlab-ce/
)
.
*
The official GitLab Enterprise Edition Docker image is
[
available on Docker Hub
](
https://
registry.hub.docker.com/u
/gitlab/gitlab-ee/
)
.
*
The official GitLab Community Edition Docker image is
[
available on Docker Hub
](
https://
hub.docker.com/r
/gitlab/gitlab-ce/
)
.
*
The official GitLab Enterprise Edition Docker image is
[
available on Docker Hub
](
https://
hub.docker.com/r
/gitlab/gitlab-ee/
)
.
*
The complete usage guide can be found in
[
Using GitLab Docker images
](
http://doc.gitlab.com/omnibus/docker/
)
*
The Dockerfile used for building public images is in
[
Omnibus Repository
](
https://gitlab.com/gitlab-org/omnibus-gitlab/tree/master/docker
)
*
Check the guide for
[
creating Omnibus-based Docker Image
](
http://doc.gitlab.com/omnibus/build/README.html#
Build-D
ocker-image
)
*
Check the guide for
[
creating Omnibus-based Docker Image
](
http://doc.gitlab.com/omnibus/build/README.html#
build-d
ocker-image
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment