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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
d7664c72
Commit
d7664c72
authored
Jun 07, 2016
by
Mark Pundsack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add example using GitLab Container Registry
parent
4209212b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
0 deletions
+72
-0
doc/ci/docker/using_docker_build.md
doc/ci/docker/using_docker_build.md
+72
-0
No files found.
doc/ci/docker/using_docker_build.md
View file @
d7664c72
...
@@ -208,5 +208,77 @@ In order to do that follow the steps:
...
@@ -208,5 +208,77 @@ In order to do that follow the steps:
the security mechanisms of containers and exposing your host to privilege
the security mechanisms of containers and exposing your host to privilege
escalation which can lead to container breakout.
escalation which can lead to container breakout.
## Using the GitLab Container Registry
Once you've built a Docker image, you can push it up to the built-in
[
GitLab Container Registry
](
../../container_registry/README.md
)
.
```
build:
stage: build
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.example.com
- docker build -t registry.example.com/group/project:latest .
- docker push registry.example.com/group/project:latest
```
Here's a more elaborate example that splits up the tasks into 4 stages,
including two tests that run in parallel. The build is stored in the container
registry and used by subsequent stages, downloading the image
when needed. Changes to
`master`
also get tagged as
`latest`
and deployed using
an application-specific deploy script:
```
yaml
image
:
docker:git
services
:
-
docker:dind
stages
:
-
build
-
test
-
release
-
deploy
variables
:
CONTAINER_TEST_IMAGE
:
registry.example.com/my-group/my-project:$CI_BUILD_REF_NAME
CONTAINER_RELEASE_IMAGE
:
registry.example.com/my-group/my-project:latest
before_script
:
-
docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.example.com
build
:
stage
:
build
script
:
-
docker build --pull -t $CONTAINER_TEST_IMAGE .
-
docker push $CONTAINER_TEST_IMAGE
test1
:
stage
:
test
script
:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker run $CONTAINER_TEST_IMAGE /script/to/run/tests
test2
:
stage
:
test
script
:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker run $CONTAINER_TEST_IMAGE /script/to/run/another/test
release-image
:
stage
:
release
script
:
-
docker pull $CONTAINER_TEST_IMAGE
-
docker tag $CONTAINER_TEST_IMAGE $CONTAINER_RELEASE_IMAGE
-
docker push $CONTAINER_RELEASE_IMAGE
only
:
-
master
deploy
:
stage
:
deploy
script
:
-
./deploy.sh
only
:
-
master
```
[
docker-in-docker
]:
https://blog.docker.com/2013/09/docker-can-now-run-within-docker/
[
docker-in-docker
]:
https://blog.docker.com/2013/09/docker-can-now-run-within-docker/
[
docker-cap
]:
https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities
[
docker-cap
]:
https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities
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