tencent cloud

All product documents
Last updated: 2023-12-29 11:44:51
Docker
Last updated: 2023-12-29 11:44:51

title: Docker - CODING Help Center pageTitle: Docker pagePrevTitle: Build Composer Artifacts pagePrev: ci/artifacts/composer.html pageNextTitle: Build File Type Artifact pageNext: ci/artifacts/generic.html alias:
devops/ci/artifacts/docker.html
ci/artifacts/docker.html


Feature Overview

This document provides an example of a Jenkinsfile for building a Docker image with a continuous integration task. After you build the Docker image, you can use a preset plugin to upload it to the CODING Artifact Repository (CODING-AR). Before using this function, ensure that you have a basic understanding of Docker artifact repositories.

Jenkinsfile

pipeline {
agent any
stages {
stage('Check out') {
steps {
checkout([
$class: 'GitSCM',
branches: [[name: env.GIT_BUILD_REF]],
userRemoteConfigs: [[url: env.GIT_REPO_URL, credentialsId: env.CREDENTIALS_ID]]
])
}
}
stage('Build Docker image') {
steps {
script {
ARTIFACT_VERSION = "1.2.0"
// Note: When creating a project, use hyphens in the link ID instead of underscores. For example, the ID of "My Project" should be my-project.
// Modify build/my-api to your artifact repository name and image name
CODING_DOCKER_IMAGE_NAME = "${env.PROJECT_NAME.toLowerCase()}/build/my-api"
// The environment variable CODING_ARTIFACTS_CREDENTIALS_ID has been built into the artifact repository in this project. No need to set again.
docker.withRegistry("https://${env.CCI_CURRENT_TEAM}-docker.pkg.coding.net", "${env.CODING_ARTIFACTS_CREDENTIALS_ID}") {
docker.build("${CODING_DOCKER_IMAGE_NAME}:${ARTIFACT_VERSION}").push()
}
}
}
}
}
}

Was this page helpful?
You can also Contact Sales or Submit a Ticket for help.
Yes
No

Feedback

Contact Us

Contact our sales team or business advisors to help your business.

Technical Support

Open a ticket if you're looking for further assistance. Our Ticket is 7x24 avaliable.

7x24 Phone Support
Hong Kong, China
+852 800 906 020 (Toll Free)
United States
+1 844 606 0804 (Toll Free)
United Kingdom
+44 808 196 4551 (Toll Free)
Canada
+1 888 605 7930 (Toll Free)
Australia
+61 1300 986 386 (Toll Free)
EdgeOne hotline
+852 300 80699
More local hotlines coming soon