[{"data":1,"prerenderedAt":1006},["ShallowReactive",2],{"/blog/docker-my-precious":3,"navigation-en-us":220,"banner-en-us":648,"footer-en-us":658,"blog-post-authors-en-us-Abdulkader Benchi":902,"blog-related-posts-en-us-docker-my-precious":917,"blog-promotions-en-us":942,"next-steps-en-us":996},{"id":4,"title":5,"authors":6,"body":8,"category":192,"date":193,"description":194,"extension":195,"externalUrl":196,"faq":196,"featured":197,"heroImage":198,"meta":199,"navigation":207,"path":208,"seo":209,"slug":213,"stem":214,"tags":215,"template":218,"updatedDate":196,"__hash__":219},"blogPosts/en-us/blog/docker-my-precious.md","Continuous integration: From Jenkins to GitLab using Docker",[7],"Abdulkader Benchi",{"type":9,"value":10,"toc":184},"minimark",[11,22,48,57,62,65,76,79,89,93,102,108,112,115,121,124,127,132,141,155,159,162,173,177],[12,13,14,15,21],"p",{},"Here at ",[16,17,20],"a",{"href":18,"rel":19},"https://linagora.com/",[],"Linagora",", we are migrating all our working tools to open source ones. Yes, we are an open source company with open source lovers.",[12,23,24,25,30,31,35,36,41,42,47],{},"Among these different tools were the ",[16,26,29],{"href":27,"rel":28},"https://www.atlassian.com/",[],"Atlassian"," development tools. We decided to switch to GitLab and it started making all the difference. Indeed, GitLab includes Git repository management, issue tracking, code review, an IDE, activity streams, wikis, and more. It's worth mentioning that GitLab has built-in ",[16,32,34],{"href":33},"/topics/ci-cd/","Continuous Integration (CI) and Continuous Deployment (CD)"," to test, build, and deploy our code. We can easily monitor the progress of our tests and build pipelines. What we love about the CI provided by GitLab is the fact that it supports Docker. Indeed, GitLab allows us to use custom ",[16,37,40],{"href":38,"rel":39},"https://www.docker.com/",[],"Docker"," images, spin up services as part of testing, build new Docker images, even run on ",[16,43,46],{"href":44,"rel":45},"https://kubernetes.io/",[],"Kubernetes",".",[12,49,50,51,56],{},"If you are a Docker lover and you want to see how to transform ",[16,52,55],{"href":53,"rel":54},"https://jenkins.io/",[],"Jenkins"," CI to GitLab CI using Docker, then you are in the right place.",[58,59,61],"h3",{"id":60},"jenkins-job","Jenkins job",[12,63,64],{},"Let’s have a look at our Jenkins Job.",[66,67,73],"pre",{"className":68,"code":70,"language":71,"meta":72},[69],"language-text","MONGOPORT=23500\nBASEDIR=`pwd`\n\n# Update tools\n(cd repo && composer update)\n\n# Run code style checker\n./repo/vendor/bin/phpcs -p --standard=repo/vendor/sabre/dav/tests/phpcs/ruleset.xml --report-checkstyle=checkstyle.xml repo/lib/\n\n# Cleanup\nrm -rf mongodb\nrm -f mongo.pid\nrm -f mongo.log\nmkdir -p mongodb\n\n\n# Start temporary mongo server\nmongod --dbpath mongodb \\\n       --port $MONGOPORT \\\n       --pidfilepath $BASEDIR/mongo.pid \\\n       --logpath mongo.log \\\n        --fork\n\nsleep 2\n\n# Configure\ncat \u003C\u003CEOF > repo/config.json\n{\n  \"webserver\": {\n    \"baseUri\": \"/\",\n    \"allowOrigin\": \"*\"\n  },\n  \"database\": {\n    \"esn\": {\n      \"connectionString\" : \"mongodb://localhost:$MONGOPORT/\",\n      \"db\": \"esn\",\n      \"connectionOptions\": {\n        \"w\": 1,\n        \"fsync\": true,\n        \"connectTimeoutMS\": 10000\n      }\n    },\n    \"sabre\": {\n      \"connectionString\" : \"mongodb://localhost:$MONGOPORT/\",\n      \"db\": \"sabredav\",\n      \"connectionOptions\": {\n        \"w\": 1,\n        \"fsync\": true,\n        \"connectTimeoutMS\": 10000\n      }\n    }\n  },\n  \"esn\": {\n    \"apiRoot\": \"http://localhost:8080/api\"\n  }\n}\nEOF\n\n# Run unit tests\n(cd repo/tests && ../vendor/bin/phpunit \\\n    --coverage-clover=$BASEDIR/clover.xml \\\n    --log-junit=$BASEDIR/junit.xml \\\n    .)\n\n# Clean up\nkill `cat mongo.pid`\n","text","",[74,75,70],"code",{"__ignoreMap":72},[12,77,78],{},"I know, it is horrible to read this configuration, but you know we have to configure everything from A to Z in Jenkins. I can confirm that this job is one of the simplest jobs we have, because it depends on only one external service, “MongoDB.” We passed almost half of this job configuring this external service, starting it, cleaning it and killing it. Whereas, our main job is only about 10 lines. Furthermore, we suppose that on the Jenkins machine, we already have installed PHP, all PHP plugins and composer. So if we change the machine we have to reconfigure the new machine before starting using it. Docker… help please.",[12,80,81,86],{},[82,83],"img",{"alt":84,"src":85},"Docker help us","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782399039/blog/Content%20Images/sos-docker.jpg",[87,88],"br",{},[58,90,92],{"id":91},"gitlab-job","GitLab job",[12,94,95,96,101],{},"Before starting, it's worth mentioning that good documentation about this part is presented ",[16,97,100],{"href":98,"rel":99},"https://docs.gitlab.com/ci/docker/using_docker_images/",[],"here",". If you got it right, all GitLab’s CI configuration is to be done in a file called .gitlab-ci.yml. I will start presenting the final result before discussing the details:",[66,103,106],{"className":104,"code":105,"language":71,"meta":72},[69],"image: linagora/php-deps-composer:5.6.30\n\nservices:\n  - mongo:3.2\n\nstages:\n  - build\n  - deploy_dev\n\nbuild:\n  stage: build\n  script:\n    - composer up\n    - cp config.tests.json config.json\n    - ./vendor/bin/phpcs -p --standard=vendor/sabre/dav/tests/phpcs/ruleset.xml --report-checkstyle=checkstyle.xml lib/\n    - cd tests\n    - ../vendor/bin/phpunit --coverage-clover=${CI_PROJECT_DIR}/clover.xml --log-junit=${CI_PROJECT_DIR}/junit.xml .\n\ndeploy_dev:\n  stage: deploy_dev\n  only:\n    - master\n  script:\n    - cd /srv/sabre.dev\n    - git fetch --all\n    - git checkout ${CI_COMMIT_SHA}\n    - composer up\n",[74,107,105],{"__ignoreMap":72},[58,109,111],{"id":110},"migration-procedure","Migration procedure",[12,113,114],{},"We start defining the image of which of GitLab’s Docker executors will run to perform the CI tasks. This is done by using the image keyword (line 1). This is a custom image we build to provide all the dependencies we need for our CI tasks. Here is the corresponding Dockerfile:",[66,116,119],{"className":117,"code":118,"language":71,"meta":72},[69],"FROM php:5.6.30\n\nMAINTAINER Linagora Folks \u003Clgs-openpaas-dev@linagora.com>\n\nRUN apt-get update \\\n    apt-get -y install unzip git php5-curl php5-dev php-amqplib \\\n    docker-php-ext-install bcmath \\\n    pecl install mongo \\\n    docker-php-ext-enable mongo \\\n    curl https://getcomposer.org/installer | php \\\n    mv composer.phar /usr/local/bin/composer.phar \\\n    ln -s /usr/local/bin/composer.phar /usr/local/bin/composer\n",[74,120,118],{"__ignoreMap":72},[12,122,123],{},"As I mentioned before, our CI requires an external MongoDB service. But this time, Docker is here to do the magic. It helps us with configuring, starting and killing the service correctly. All what we have to do is to declare mongo as a service (line 4), et voilà!",[12,125,126],{},"Now we have set up our environment, we can leverage script tag to test our code (lines 13–17) and deploy it (lines 24–27). It is worth noting that config.test.json contains all the configuration we have had in Jenkins (Lines 28–56 from Jenkins configuration).",[128,129,131],"h4",{"id":130},"running-the-gitlab-job-locally","Running the GitLab job locally",[12,133,134,135,140],{},"We can easily test our GitLab builds locally using ",[16,136,139],{"href":137,"rel":138},"https://gitlab.com/gitlab-org/gitlab-runner/blob/master/docs/commands/README.md",[],"GitLab Runner",". Here is the procedure:",[142,143,144,152],"ul",{},[145,146,147,148,47],"li",{},"Install it locally, either using a package repository or directly from here. If you do not want to install the GitLab Runner locally, you can always leverage Docker to do so. Have a look ",[16,149,100],{"href":150,"rel":151},"https://gitlab.com/gitlab-org/gitlab-runner/issues/312",[],[145,153,154],{},"Run the build: gitlab-runner exec docker {my-job}. Whereas, my-job is the name of the job defined in .gitlab-ci.yml. In our case, it is called build.",[128,156,158],{"id":157},"wrap-up","Wrap up",[12,160,161],{},"As you can see, our CI job becomes easier to read thanks to GitLab and Docker. Along the same lines, we do not need to configure our machine to run tests anymore. Docker has got our back. In my opinion, the most important advantage of using Docker to run tests is to guarantee that our tests are always being run in the same conditions each time. These tests are totally isolated (and also independent) from the machine on which they run.",[12,163,164,165,47],{},"This post originally appeared on ",[166,167,168],"em",{},[16,169,172],{"href":170,"rel":171},"https://medium.com/linagora-engineering/docker-my-precious-6efbce900dcb",[],"Medium",[58,174,176],{"id":175},"about-the-guest-author","About the Guest Author",[12,178,179,180,47],{},"Abdulkader Benchi is the Javascript team leader at ",[16,181,20],{"href":182,"rel":183},"https://linagora.com/careers",[],{"title":72,"searchDepth":185,"depth":185,"links":186},2,[187,189,190,191],{"id":60,"depth":188,"text":61},3,{"id":91,"depth":188,"text":92},{"id":110,"depth":188,"text":111},{"id":175,"depth":188,"text":176},"open-source","2017-07-27","We're migrating all of our working tools to open source ones, and moving to GitLab has made all the difference.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667509/Blog/Hero%20Images/continuous-integration-from-jenkins-to-gitlab-using-docker.jpg",{"excerpt":200},{"type":9,"value":201},[202],[12,203,14,204,21],{},[16,205,20],{"href":18,"rel":206},[],true,"/en-us/blog/docker-my-precious",{"title":5,"description":194,"ogTitle":5,"ogDescription":194,"noIndex":197,"ogImage":198,"ogUrl":210,"ogSiteName":211,"ogType":212,"canonicalUrls":210},"https://about.gitlab.com/blog/docker-my-precious","https://about.gitlab.com","article","docker-my-precious","en-us/blog/docker-my-precious",[216,217],"open source","CI","BlogPost","cFlRi0YCh4zlwrHkgpNWNpBrApS_jZl2gAoe2aHtwv0",{"logo":221,"freeTrial":226,"sales":231,"login":236,"items":241,"search":568,"minimal":599,"duo":618,"switchNav":627,"pricingDeployment":638},{"config":222},{"href":223,"dataGaName":224,"dataGaLocation":225},"/","gitlab logo","header",{"text":227,"config":228},"Get free trial",{"href":229,"dataGaName":230,"dataGaLocation":225},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":232,"config":233},"Request a demo",{"href":234,"dataGaName":235,"dataGaLocation":225},"/sales/?contact-topic=request-demo","sales",{"text":237,"config":238},"Sign in",{"href":239,"dataGaName":240,"dataGaLocation":225},"https://gitlab.com/users/sign_in/","sign in",[242,271,371,376,490,546],{"text":243,"config":244,"menu":246},"Platform",{"dataNavLevelOne":245},"platform",{"type":247,"columns":248},"cards",[249,255,263],{"title":243,"description":250,"link":251},"The intelligent orchestration platform for DevSecOps",{"text":252,"config":253},"Explore our Platform",{"href":254,"dataGaName":245,"dataGaLocation":225},"/platform/",{"title":256,"description":257,"link":258},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":259,"config":260},"Meet GitLab Duo",{"href":261,"dataGaName":262,"dataGaLocation":225},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":264,"description":265,"link":266},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":267,"config":268},"Learn more",{"href":269,"dataGaName":270,"dataGaLocation":225},"/why-gitlab/","why gitlab",{"text":272,"left":207,"config":273,"menu":275},"Product",{"dataNavLevelOne":274},"solutions",{"type":276,"link":277,"columns":281,"feature":350},"lists",{"text":278,"config":279},"View all Solutions",{"href":280,"dataGaName":274,"dataGaLocation":225},"/solutions/",[282,306,329],{"title":283,"description":284,"link":285,"items":290},"Automation","CI/CD and automation to accelerate deployment",{"config":286},{"icon":287,"href":288,"dataGaName":289,"dataGaLocation":225},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[291,295,298,302],{"text":292,"config":293},"CI/CD",{"href":294,"dataGaLocation":225,"dataGaName":292},"/solutions/continuous-integration/",{"text":256,"config":296},{"href":261,"dataGaLocation":225,"dataGaName":297},"gitlab duo agent platform - product menu",{"text":299,"config":300},"Source Code Management",{"href":301,"dataGaLocation":225,"dataGaName":299},"/solutions/source-code-management/",{"text":303,"config":304},"Automated Software Delivery",{"href":288,"dataGaLocation":225,"dataGaName":305},"Automated software delivery",{"title":307,"description":308,"link":309,"items":314},"Security","Deliver code faster without compromising security",{"config":310},{"href":311,"dataGaName":312,"dataGaLocation":225,"icon":313},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[315,319,324],{"text":316,"config":317},"Application Security Testing",{"href":311,"dataGaName":318,"dataGaLocation":225},"Application security testing",{"text":320,"config":321},"Software Supply Chain Security",{"href":322,"dataGaLocation":225,"dataGaName":323},"/solutions/supply-chain/","Software supply chain security",{"text":325,"config":326},"Software Compliance",{"href":327,"dataGaName":328,"dataGaLocation":225},"/solutions/software-compliance/","software compliance",{"title":330,"link":331,"items":336},"Measurement",{"config":332},{"icon":333,"href":334,"dataGaName":335,"dataGaLocation":225},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[337,341,345],{"text":338,"config":339},"Visibility & Measurement",{"href":334,"dataGaLocation":225,"dataGaName":340},"Visibility and Measurement",{"text":342,"config":343},"Value Stream Management",{"href":344,"dataGaLocation":225,"dataGaName":342},"/solutions/value-stream-management/",{"text":346,"config":347},"Analytics & Insights",{"href":348,"dataGaLocation":225,"dataGaName":349},"/solutions/analytics-and-insights/","Analytics and insights",{"title":351,"type":276,"items":352},"GitLab for",[353,359,365],{"text":354,"config":355},"Enterprise",{"icon":356,"href":357,"dataGaLocation":225,"dataGaName":358},"Building","/enterprise/","enterprise",{"text":360,"config":361},"Small Business",{"icon":362,"href":363,"dataGaLocation":225,"dataGaName":364},"Work","/small-business/","small business",{"text":366,"config":367},"Public Sector",{"icon":368,"href":369,"dataGaLocation":225,"dataGaName":370},"Organization","/solutions/public-sector/","public sector",{"text":372,"config":373},"Pricing",{"href":374,"dataGaName":375,"dataGaLocation":225,"dataNavLevelOne":375},"/pricing/","pricing",{"text":377,"config":378,"menu":380},"Resources",{"dataNavLevelOne":379},"resources",{"type":276,"link":381,"columns":385,"feature":479},{"text":382,"config":383},"View all resources",{"href":384,"dataGaName":379,"dataGaLocation":225},"/resources/",[386,419,446],{"title":387,"items":388},"Getting started",[389,394,399,404,409,414],{"text":390,"config":391},"Install",{"href":392,"dataGaName":393,"dataGaLocation":225},"/install/","install",{"text":395,"config":396},"Quick start guides",{"href":397,"dataGaName":398,"dataGaLocation":225},"/get-started/","quick setup checklists",{"text":400,"config":401},"Learn",{"href":402,"dataGaLocation":225,"dataGaName":403},"https://university.gitlab.com/","learn",{"text":405,"config":406},"Product documentation",{"href":407,"dataGaName":408,"dataGaLocation":225},"https://docs.gitlab.com/","product documentation",{"text":410,"config":411},"Best practice videos",{"href":412,"dataGaName":413,"dataGaLocation":225},"/getting-started-videos/","best practice videos",{"text":415,"config":416},"Integrations",{"href":417,"dataGaName":418,"dataGaLocation":225},"/integrations/","integrations",{"title":420,"items":421},"Discover",[422,427,432,437,441],{"text":423,"config":424},"Customer success stories",{"href":425,"dataGaName":426,"dataGaLocation":225},"/customers/","customer success stories",{"text":428,"config":429},"Blog",{"href":430,"dataGaName":431,"dataGaLocation":225},"/blog/","blog",{"text":433,"config":434},"Demo Hub",{"href":435,"dataGaName":436,"dataGaLocation":225},"/demo-hub/","demo hub",{"text":438,"config":439},"The Source",{"href":440,"dataGaName":431,"dataGaLocation":225},"/the-source/",{"text":442,"config":443},"Remote",{"href":444,"dataGaName":445,"dataGaLocation":225},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":447,"items":448},"Connect",[449,454,459,464,469,474],{"text":450,"config":451},"GitLab Services",{"href":452,"dataGaName":453,"dataGaLocation":225},"/services/","services",{"text":455,"config":456},"Contribute",{"href":457,"dataGaName":458,"dataGaLocation":225},"https://contributors.gitlab.com","contribute",{"text":460,"config":461},"Community",{"href":462,"dataGaName":463,"dataGaLocation":225},"/community/","community",{"text":465,"config":466},"Forum",{"href":467,"dataGaName":468,"dataGaLocation":225},"https://forum.gitlab.com/","forum",{"text":470,"config":471},"Events",{"href":472,"dataGaName":473,"dataGaLocation":225},"/events/","events",{"text":475,"config":476},"Partners",{"href":477,"dataGaName":478,"dataGaLocation":225},"/partners/","partners",{"config":480,"title":483,"text":484,"link":485},{"background":481,"textColor":482},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":486,"config":487},"Read the latest",{"href":488,"dataGaName":489,"dataGaLocation":225},"/whats-new/","whats new",{"text":491,"config":492,"menu":494},"Company",{"dataNavLevelOne":493},"company",{"type":276,"columns":495},[496],{"items":497},[498,503,509,511,516,521,526,531,536,541],{"text":499,"config":500},"About",{"href":501,"dataGaName":502,"dataGaLocation":225},"/company/","about",{"text":504,"config":505,"footerGa":508},"Jobs",{"href":506,"dataGaName":507,"dataGaLocation":225},"/jobs/","jobs",{"dataGaName":507},{"text":470,"config":510},{"href":472,"dataGaName":473,"dataGaLocation":225},{"text":512,"config":513},"Leadership",{"href":514,"dataGaName":515,"dataGaLocation":225},"/company/team/e-group/","leadership",{"text":517,"config":518},"Handbook",{"href":519,"dataGaName":520,"dataGaLocation":225},"https://handbook.gitlab.com/","handbook",{"text":522,"config":523},"Investor relations",{"href":524,"dataGaName":525,"dataGaLocation":225},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":527,"config":528},"Trust Center",{"href":529,"dataGaName":530,"dataGaLocation":225},"/security/","trust center",{"text":532,"config":533},"AI Transparency Center",{"href":534,"dataGaName":535,"dataGaLocation":225},"/ai-transparency-center/","ai transparency center",{"text":537,"config":538},"Newsletter",{"href":539,"dataGaName":540,"dataGaLocation":225},"/company/contact/#contact-forms","newsletter",{"text":542,"config":543},"Press",{"href":544,"dataGaName":545,"dataGaLocation":225},"/press/","press",{"text":547,"config":548,"menu":549},"Contact us",{"dataNavLevelOne":493},{"type":276,"columns":550},[551],{"items":552},[553,558,563],{"text":554,"config":555},"Talk to sales",{"href":556,"dataGaName":557,"dataGaLocation":225},"/sales/","talk to sales",{"text":559,"config":560},"Support portal",{"href":561,"dataGaName":562,"dataGaLocation":225},"https://support.gitlab.com/hc/en-us","support portal",{"text":564,"config":565},"Customer portal",{"href":566,"dataGaName":567,"dataGaLocation":225},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":569,"login":570,"suggestions":577},"Close",{"text":571,"link":572},"To search repositories and projects, login to",{"text":573,"config":574},"gitlab.com",{"href":239,"dataGaName":575,"dataGaLocation":576},"search login","search",{"text":578,"default":579},"Suggestions",[580,582,586,588,592,596],{"text":256,"config":581},{"href":261,"dataGaName":256,"dataGaLocation":576},{"text":583,"config":584},"Code Suggestions (AI)",{"href":585,"dataGaName":583,"dataGaLocation":576},"/solutions/code-suggestions/",{"text":292,"config":587},{"href":294,"dataGaName":292,"dataGaLocation":576},{"text":589,"config":590},"GitLab on AWS",{"href":591,"dataGaName":589,"dataGaLocation":576},"/partners/technology-partners/aws/",{"text":593,"config":594},"GitLab on Google Cloud",{"href":595,"dataGaName":593,"dataGaLocation":576},"/partners/technology-partners/google-cloud-platform/",{"text":597,"config":598},"Why GitLab?",{"href":269,"dataGaName":597,"dataGaLocation":576},{"freeTrial":600,"mobileIcon":605,"desktopIcon":610,"secondaryButton":613},{"text":601,"config":602},"Start free trial",{"href":603,"dataGaName":230,"dataGaLocation":604},"https://gitlab.com/-/trials/new/","nav",{"altText":606,"config":607},"Gitlab Icon",{"src":608,"dataGaName":609,"dataGaLocation":604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":606,"config":611},{"src":612,"dataGaName":609,"dataGaLocation":604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":614,"config":615},"Get Started",{"href":616,"dataGaName":617,"dataGaLocation":604},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":619,"mobileIcon":623,"desktopIcon":625},{"text":620,"config":621},"Learn more about GitLab Duo",{"href":261,"dataGaName":622,"dataGaLocation":604},"gitlab duo",{"altText":606,"config":624},{"src":608,"dataGaName":609,"dataGaLocation":604},{"altText":606,"config":626},{"src":612,"dataGaName":609,"dataGaLocation":604},{"button":628,"mobileIcon":633,"desktopIcon":635},{"text":629,"config":630},"/switch",{"href":631,"dataGaName":632,"dataGaLocation":604},"#contact","switch",{"altText":606,"config":634},{"src":608,"dataGaName":609,"dataGaLocation":604},{"altText":606,"config":636},{"src":637,"dataGaName":609,"dataGaLocation":604},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":639,"mobileIcon":644,"desktopIcon":646},{"text":640,"config":641},"Back to pricing",{"href":374,"dataGaName":642,"dataGaLocation":604,"icon":643},"back to pricing","GoBack",{"altText":606,"config":645},{"src":608,"dataGaName":609,"dataGaLocation":604},{"altText":606,"config":647},{"src":612,"dataGaName":609,"dataGaLocation":604},{"title":649,"titleMobile":650,"button":651,"config":656},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":267,"config":652},{"href":653,"dataGaName":654,"dataGaLocation":655},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":657,"disabled":197},"release",{"data":659},{"text":660,"source":661,"edit":667,"contribute":672,"config":677,"items":682,"minimal":891},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":662,"config":663},"View page source",{"href":664,"dataGaName":665,"dataGaLocation":666},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":668,"config":669},"Edit this page",{"href":670,"dataGaName":671,"dataGaLocation":666},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":673,"config":674},"Please contribute",{"href":675,"dataGaName":676,"dataGaLocation":666},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":678,"facebook":679,"youtube":680,"linkedin":681},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[683,730,783,827,859],{"title":372,"links":684,"subMenu":699},[685,689,694],{"text":686,"config":687},"View plans",{"href":374,"dataGaName":688,"dataGaLocation":666},"view plans",{"text":690,"config":691},"Why Premium?",{"href":692,"dataGaName":693,"dataGaLocation":666},"/pricing/premium/","why premium",{"text":695,"config":696},"Why Ultimate?",{"href":697,"dataGaName":698,"dataGaLocation":666},"/pricing/ultimate/","why ultimate",[700],{"title":701,"links":702},"Contact Us",[703,706,708,710,715,720,725],{"text":704,"config":705},"Contact sales",{"href":556,"dataGaName":235,"dataGaLocation":666},{"text":559,"config":707},{"href":561,"dataGaName":562,"dataGaLocation":666},{"text":564,"config":709},{"href":566,"dataGaName":567,"dataGaLocation":666},{"text":711,"config":712},"Status",{"href":713,"dataGaName":714,"dataGaLocation":666},"https://status.gitlab.com/","status",{"text":716,"config":717},"Terms of use",{"href":718,"dataGaName":719,"dataGaLocation":666},"/terms/","terms of use",{"text":721,"config":722},"Privacy statement",{"href":723,"dataGaName":724,"dataGaLocation":666},"/privacy/","privacy statement",{"text":726,"config":727},"Cookie preferences",{"dataGaName":728,"dataGaLocation":666,"id":729,"isOneTrustButton":207},"cookie preferences","ot-sdk-btn",{"title":272,"links":731,"subMenu":740},[732,736],{"text":733,"config":734},"DevSecOps platform",{"href":254,"dataGaName":735,"dataGaLocation":666},"devsecops platform",{"text":737,"config":738},"AI-Assisted Development",{"href":261,"dataGaName":739,"dataGaLocation":666},"ai-assisted development",[741],{"title":742,"links":743},"Topics",[744,748,753,758,763,768,773,778],{"text":745,"config":746},"CICD",{"href":33,"dataGaName":747,"dataGaLocation":666},"cicd",{"text":749,"config":750},"GitOps",{"href":751,"dataGaName":752,"dataGaLocation":666},"/topics/gitops/","gitops",{"text":754,"config":755},"DevOps",{"href":756,"dataGaName":757,"dataGaLocation":666},"/topics/devops/","devops",{"text":759,"config":760},"Version Control",{"href":761,"dataGaName":762,"dataGaLocation":666},"/topics/version-control/","version control",{"text":764,"config":765},"DevSecOps",{"href":766,"dataGaName":767,"dataGaLocation":666},"/topics/devsecops/","devsecops",{"text":769,"config":770},"Cloud Native",{"href":771,"dataGaName":772,"dataGaLocation":666},"/topics/cloud-native/","cloud native",{"text":774,"config":775},"AI for Coding",{"href":776,"dataGaName":777,"dataGaLocation":666},"/topics/devops/ai-for-coding/","ai for coding",{"text":779,"config":780},"Agentic AI",{"href":781,"dataGaName":782,"dataGaLocation":666},"/topics/agentic-ai/","agentic ai",{"title":784,"links":785},"Solutions",[786,788,790,795,799,802,806,809,811,814,817,822],{"text":316,"config":787},{"href":311,"dataGaName":316,"dataGaLocation":666},{"text":305,"config":789},{"href":288,"dataGaName":289,"dataGaLocation":666},{"text":791,"config":792},"Agile development",{"href":793,"dataGaName":794,"dataGaLocation":666},"/solutions/agile-delivery/","agile delivery",{"text":796,"config":797},"SCM",{"href":301,"dataGaName":798,"dataGaLocation":666},"source code management",{"text":745,"config":800},{"href":294,"dataGaName":801,"dataGaLocation":666},"continuous integration & delivery",{"text":803,"config":804},"Value stream management",{"href":344,"dataGaName":805,"dataGaLocation":666},"value stream management",{"text":749,"config":807},{"href":808,"dataGaName":752,"dataGaLocation":666},"/solutions/gitops/",{"text":354,"config":810},{"href":357,"dataGaName":358,"dataGaLocation":666},{"text":812,"config":813},"Small business",{"href":363,"dataGaName":364,"dataGaLocation":666},{"text":815,"config":816},"Public sector",{"href":369,"dataGaName":370,"dataGaLocation":666},{"text":818,"config":819},"Education",{"href":820,"dataGaName":821,"dataGaLocation":666},"/solutions/education/","education",{"text":823,"config":824},"Financial services",{"href":825,"dataGaName":826,"dataGaLocation":666},"/solutions/finance/","financial services",{"title":377,"links":828},[829,831,833,835,838,840,843,845,847,849,851,853,855,857],{"text":390,"config":830},{"href":392,"dataGaName":393,"dataGaLocation":666},{"text":395,"config":832},{"href":397,"dataGaName":398,"dataGaLocation":666},{"text":400,"config":834},{"href":402,"dataGaName":403,"dataGaLocation":666},{"text":405,"config":836},{"href":407,"dataGaName":837,"dataGaLocation":666},"docs",{"text":428,"config":839},{"href":430,"dataGaName":431,"dataGaLocation":666},{"text":841,"config":842},"What's new",{"href":488,"dataGaName":489,"dataGaLocation":666},{"text":423,"config":844},{"href":425,"dataGaName":426,"dataGaLocation":666},{"text":442,"config":846},{"href":444,"dataGaName":445,"dataGaLocation":666},{"text":450,"config":848},{"href":452,"dataGaName":453,"dataGaLocation":666},{"text":455,"config":850},{"href":457,"dataGaName":458,"dataGaLocation":666},{"text":460,"config":852},{"href":462,"dataGaName":463,"dataGaLocation":666},{"text":465,"config":854},{"href":467,"dataGaName":468,"dataGaLocation":666},{"text":470,"config":856},{"href":472,"dataGaName":473,"dataGaLocation":666},{"text":475,"config":858},{"href":477,"dataGaName":478,"dataGaLocation":666},{"title":491,"links":860},[861,863,865,867,869,871,875,880,882,884,886],{"text":499,"config":862},{"href":501,"dataGaName":493,"dataGaLocation":666},{"text":504,"config":864},{"href":506,"dataGaName":507,"dataGaLocation":666},{"text":512,"config":866},{"href":514,"dataGaName":515,"dataGaLocation":666},{"text":517,"config":868},{"href":519,"dataGaName":520,"dataGaLocation":666},{"text":522,"config":870},{"href":524,"dataGaName":525,"dataGaLocation":666},{"text":872,"config":873},"Sustainability",{"href":874,"dataGaName":872,"dataGaLocation":666},"/sustainability/",{"text":876,"config":877},"Diversity, inclusion and belonging (DIB)",{"href":878,"dataGaName":879,"dataGaLocation":666},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":527,"config":881},{"href":529,"dataGaName":530,"dataGaLocation":666},{"text":537,"config":883},{"href":539,"dataGaName":540,"dataGaLocation":666},{"text":542,"config":885},{"href":544,"dataGaName":545,"dataGaLocation":666},{"text":887,"config":888},"Modern Slavery Transparency Statement",{"href":889,"dataGaName":890,"dataGaLocation":666},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":892},[893,896,899],{"text":894,"config":895},"Terms",{"href":718,"dataGaName":719,"dataGaLocation":666},{"text":897,"config":898},"Cookies",{"dataGaName":728,"dataGaLocation":666,"id":729,"isOneTrustButton":207},{"text":900,"config":901},"Privacy",{"href":723,"dataGaName":724,"dataGaLocation":666},[903],{"id":904,"title":7,"body":196,"config":905,"content":907,"description":196,"extension":911,"meta":912,"navigation":207,"path":913,"seo":914,"stem":915,"__hash__":916},"blogAuthors/en-us/blog/authors/abdulkader-benchi.yml",{"template":906},"BlogAuthor",{"name":7,"config":908},{"headshot":909,"ctfId":910},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","Abdulkader-Benchi","yml",{},"/en-us/blog/authors/abdulkader-benchi",{},"en-us/blog/authors/abdulkader-benchi","P2e1ddfFDUJwYeDoJCpUHAtx9nOI4QBtAE7e48MLWw4",[918,926,934],{"title":919,"description":920,"heroImage":921,"category":192,"date":922,"authors":923,"slug":925,"externalUrl":196},"What's new in Git 2.55.0?","Learn about the new features and changes in Git 2.55, including a new git-history(1) fixup command, an fsmonitor daemon for Linux, pushing to remote groups, and more.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782732487/ztwgrvlolpifo01vj8qc.png","2026-06-29",[924],"Toon Claes","whats-new-in-git-2-55-0",{"title":927,"description":928,"heroImage":929,"category":192,"date":930,"authors":931,"slug":933,"externalUrl":196},"GitLab AI Hackathon 2026: Meet the winners","Nearly 7,000 developers built 600+ AI agents and flows on GitLab Duo Agent Platform. Find out who won and what they created.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1776457632/llddiylsgwuze0u1rjks.png","2026-04-22",[932],"Nick Veenhof","gitlab-ai-hackathon-2026-meet-the-winners",{"title":935,"description":936,"heroImage":937,"category":192,"date":938,"authors":939,"slug":941,"externalUrl":196},"What’s new in Git 2.54.0?","Learn about release contributions, including new repository maintenance, a new command to edit commit history, a replacement for git-sizer(1), and more.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782734716/ztwgrvlolpifo01vj8qc.png","2026-04-20",[940],"Patrick Steinhardt","whats-new-in-git-2-54-0",{"promotions":943},[944,958,970,982],{"id":945,"categories":946,"header":948,"text":949,"button":950,"image":955},"ai-modernization",[947],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":951,"config":952},"Get your AI maturity score",{"href":953,"dataGaName":954,"dataGaLocation":431},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":956},{"src":957},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":959,"categories":960,"header":962,"text":949,"button":963,"image":967},"devops-modernization",[961,767],"product","Are you just managing tools or shipping innovation?",{"text":964,"config":965},"Get your DevOps maturity score",{"href":966,"dataGaName":954,"dataGaLocation":431},"/assessments/devops-modernization-assessment/",{"config":968},{"src":969},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":971,"categories":972,"header":974,"text":949,"button":975,"image":979},"security-modernization",[973],"security","Are you trading speed for security?",{"text":976,"config":977},"Get your security maturity score",{"href":978,"dataGaName":954,"dataGaLocation":431},"/assessments/security-modernization-assessment/",{"config":980},{"src":981},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":983,"paths":984,"header":987,"text":988,"button":989,"image":994},"github-azure-migration",[985,986],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":990,"config":991},"See how GitLab compares to GitHub",{"href":992,"dataGaName":993,"dataGaLocation":431},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":995},{"src":969},{"header":997,"blurb":998,"button":999,"secondaryButton":1004},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1000,"config":1001},"Get your free trial",{"href":1002,"dataGaName":230,"dataGaLocation":1003},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":704,"config":1005},{"href":556,"dataGaName":235,"dataGaLocation":1003},1786803749022]