{"id":42311,"date":"2026-01-09T18:01:46","date_gmt":"2026-01-09T17:01:46","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=42311"},"modified":"2026-01-09T18:01:48","modified_gmt":"2026-01-09T17:01:48","slug":"containerize-vue-3-application-with-gitlab-ci-cd","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/","title":{"rendered":"Containerize Vue 3 application with GitLab CI\/CD"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>In this article, I will explain how I containerized my Vuetify + Vue 3 application with GitLab CI\/CD.<\/p>\n\n\n\n<p>My goal was to deploy my application on Kubernetes. To achieve this, I need to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Build the Vue 3 application<\/li>\n\n\n\n<li>Build the Docker image<\/li>\n\n\n\n<li>Push the image to the GitLab registry<\/li>\n<\/ul>\n\n\n\n<p>Quick overview: overall, the full project uses a micro-service architecture and runs on Kubernetes. The Vue 3 project only contains the UI, and we containerize it and serve it with an Nginx image. The backend is a REST API built with NestJS, and we containerize it separately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-a-dockerfile-to-the-project\"><strong>Add a Dockerfile to the project<\/strong><\/h2>\n\n\n\n<p>First, I need a Dockerfile to build the image for my application. In this Dockerfile, I use a double-stage build. As a result, a final image containing only what is strictly necessary.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Build the Vue.js application\nFROM node:current-alpine AS build\nCOPY . .\/app\nWORKDIR \/app\nRUN npm install\nRUN npm run build \n\n# Final Nginx container\nFROM nginx:alpine\nCOPY --from=build \/app\/dist \/usr\/share\/nginx\/html<\/code><\/pre>\n\n\n\n<p>The important part in this Dockerfile is the multi-stage build.<br>The first part, with the Node container, build the application, but production does not require all the tools used during this step.<br>As a result, the second step copies only the <code>dist<\/code> folder, the result of the build, and embeds it into an Nginx container to serve the generated files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-the-ci-cd-pipeline-configuration\"><strong>Add the CI\/CD pipeline configuration<\/strong><\/h2>\n\n\n\n<p>In the second step, I add the .gitlab-ci.yml file to the project root directory.<\/p>\n\n\n\n<p>This file configures the pipeline, I use the docker-in-docker service to build the image. First, I login into the registry of my project. Next, I build and push the image.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>stages:\n- build\n\nbuild:\n  # Use the official docker image.\n  image: docker:latest\n  stage: build\n  services:\n    - docker:dind\n  before_script:\n    # Login to the gitlab registry\n    - docker login -u \"$CI_REGISTRY_USER\" -p \"$CI_REGISTRY_PASSWORD\" $CI_REGISTRY\n  script:\n    # Build and push the image\n    - docker build --pull -t \"$CI_REGISTRY_IMAGE:$CI_COMMIT_SHA\" .\n    - docker push \"$CI_REGISTRY_IMAGE:$CI_COMMIT_SHA\"\n\n  # Run this job where a Dockerfile exists\n  rules:\n    - if: $CI_COMMIT_BRANCH\n      exists:\n        - Dockerfile<\/code><\/pre>\n\n\n\n<p><strong>Note:<\/strong> all the variables ($CI_REGISTRY_IMAGE, $CI_COMMIT_SHA&#8230;) used in the .gitlab-ci.yml are predefined variables provided by GitLab CI\/CD.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-build-the-container\"><strong>Build the container<\/strong><\/h2>\n\n\n\n<p>Once I push the <code>.gitlab-ci.yml<\/code> file, GitLab automatically triggers the pipeline following the rules definition.<\/p>\n\n\n\n<p>After completion, the status of the pipeline is green and the status passed<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"299\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-1024x299.png\" alt=\"\" class=\"wp-image-42314\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-1024x299.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-300x88.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-768x224.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-1536x449.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-2048x598.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>As expected, the image is available in the registry of the project.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"188\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-1024x188.png\" alt=\"\" class=\"wp-image-42315\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-1024x188.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-300x55.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-768x141.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-1536x282.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Container_Registry-2048x376.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>In summary, properly containerizing a Vue application is easy, but it requires to separate build and execution. A multi-step build with an Nginx container produces a lightweight, production-ready image.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, I will explain how I containerized my Vuetify + Vue 3 application with GitLab CI\/CD. My goal was to deploy my application on Kubernetes. To achieve this, I need to: Quick overview: overall, the full project uses a micro-service architecture and runs on Kubernetes. The Vue 3 project only contains the [&hellip;]<\/p>\n","protected":false},"author":72,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1320],"tags":[2983,2648,2981,3751],"type_dbi":[],"class_list":["post-42311","post","type-post","status-publish","format-standard","hentry","category-devops","tag-ci-cd","tag-gitlab","tag-pipeline","tag-vue3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Containerize Vue 3 application with GitLab CI\/CD - dbi Blog<\/title>\n<meta name=\"description\" content=\"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\/CD pipeline.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Containerize Vue 3 application with GitLab CI\/CD\" \/>\n<meta property=\"og:description\" content=\"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\/CD pipeline.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-09T17:01:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-09T17:01:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"748\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nicolas Meunier\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nicolas Meunier\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/\"},\"author\":{\"name\":\"Nicolas Meunier\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/2e08c09a2f083004587b54128684fefe\"},\"headline\":\"Containerize Vue 3 application with GitLab CI\\\/CD\",\"datePublished\":\"2026-01-09T17:01:46+00:00\",\"dateModified\":\"2026-01-09T17:01:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/\"},\"wordCount\":344,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/01\\\/Pipelines-1024x299.png\",\"keywords\":[\"CI\\\/CD\",\"GitLab\",\"Pipeline\",\"Vue3\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/\",\"name\":\"Containerize Vue 3 application with GitLab CI\\\/CD - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/01\\\/Pipelines-1024x299.png\",\"datePublished\":\"2026-01-09T17:01:46+00:00\",\"dateModified\":\"2026-01-09T17:01:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/2e08c09a2f083004587b54128684fefe\"},\"description\":\"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\\\/CD pipeline.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/01\\\/Pipelines-scaled.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/01\\\/Pipelines-scaled.png\",\"width\":2560,\"height\":748},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/containerize-vue-3-application-with-gitlab-ci-cd\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Containerize Vue 3 application with GitLab CI\\\/CD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/2e08c09a2f083004587b54128684fefe\",\"name\":\"Nicolas Meunier\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"caption\":\"Nicolas Meunier\"},\"description\":\"Nicolas Meunier has more than 20 years of experience in IT web technologies as well as in development. He is specialized in Cloud solutions such as CI\\\/CD. His expertise also includes Kubernetes, Docker, Jenkins-X and Azure Devops. Florence Porret (FP is IT Consultant in Cloud solutions. Prior to joining dbi services, Nicolas Meunier was developer and maintainer of a CI\\\/CD pipelines at CEGID in Paris. He also worked as Lead Developer at KPMG. Florence Porret (FP holds a superior technical diploma in IT development. His branch-related experience covers software and cloud platform architecture.\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/nicolasmeunier\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Containerize Vue 3 application with GitLab CI\/CD - dbi Blog","description":"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\/CD pipeline.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/","og_locale":"en_US","og_type":"article","og_title":"Containerize Vue 3 application with GitLab CI\/CD","og_description":"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\/CD pipeline.","og_url":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/","og_site_name":"dbi Blog","article_published_time":"2026-01-09T17:01:46+00:00","article_modified_time":"2026-01-09T17:01:48+00:00","og_image":[{"width":2560,"height":748,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-scaled.png","type":"image\/png"}],"author":"Nicolas Meunier","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nicolas Meunier","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/"},"author":{"name":"Nicolas Meunier","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe"},"headline":"Containerize Vue 3 application with GitLab CI\/CD","datePublished":"2026-01-09T17:01:46+00:00","dateModified":"2026-01-09T17:01:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/"},"wordCount":344,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-1024x299.png","keywords":["CI\/CD","GitLab","Pipeline","Vue3"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/","url":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/","name":"Containerize Vue 3 application with GitLab CI\/CD - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-1024x299.png","datePublished":"2026-01-09T17:01:46+00:00","dateModified":"2026-01-09T17:01:48+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe"},"description":"How to properly build and containerize a Vue3 application in a lightweight container using GitLab CI\/CD pipeline.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-scaled.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/01\/Pipelines-scaled.png","width":2560,"height":748},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/containerize-vue-3-application-with-gitlab-ci-cd\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Containerize Vue 3 application with GitLab CI\/CD"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe","name":"Nicolas Meunier","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","caption":"Nicolas Meunier"},"description":"Nicolas Meunier has more than 20 years of experience in IT web technologies as well as in development. He is specialized in Cloud solutions such as CI\/CD. His expertise also includes Kubernetes, Docker, Jenkins-X and Azure Devops. Florence Porret (FP is IT Consultant in Cloud solutions. Prior to joining dbi services, Nicolas Meunier was developer and maintainer of a CI\/CD pipelines at CEGID in Paris. He also worked as Lead Developer at KPMG. Florence Porret (FP holds a superior technical diploma in IT development. His branch-related experience covers software and cloud platform architecture.","url":"https:\/\/www.dbi-services.com\/blog\/author\/nicolasmeunier\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/42311","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/72"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=42311"}],"version-history":[{"count":6,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/42311\/revisions"}],"predecessor-version":[{"id":42383,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/42311\/revisions\/42383"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=42311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=42311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=42311"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=42311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}