cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to create a docker image to deploy and run in different environments in databricks?

vemash
New Contributor

I am new to databricks, and trying to implement below task.

Task:
Once code merges to main branch and build is successful  CI pipeline and all tests are passed, docker build should start and create a docker image and push to different environments (from dev to stage, and prod) Artifactory.

How can I start this setup? Any guidance is appreciated. Thank you!

1 REPLY 1

MichTalebzadeh
Valued Contributor

Hi,

This is no different for building docker image for various environments

Let us try a simple high level CI/CD pipeline for building Docker images and deploying them to different environments:. It works in all environments including Databricks

 

 

 

 

             +------------------+
             |    Main Branch   |
             +------------------+
                      |
                      V
               +--------------+
               |   CI Server  |
               +--------------+
                      |
                      V
              +---------------+
              |   Check out   |
              +---------------+
                      |
                      V
              +---------------+
              |    Build      |
              +---------------+
                      |
                      V
              +---------------+
              |    Test       |
              +---------------+
                      |
                      V
              +---------------+
              | Docker Build  |
              +---------------+
                      |
                      V
              +---------------+
              | Push to       |
              | Container     |
              |   Registry    |
              +---------------+
                      |
                      V
           +---------------------+
           | Deploy to Dev       |
           | Deploy to Stage     |
           | Deploy to Prod      |
           +---------------------+

 

 

 

    Steps (basics)

  1. Code changes are made and pushed to the main branch.
  2. The CI server triggers a pipeline.
  3. The pipeline chec ks out the code from the main/master branch.
  4. The code is built.
  5. Tests are run.
  6. Docker  images are built.
  7. Docker images are pushed to a Container registry.
  8. Deployments are made to the development, staging, and production environments.

HTH

Mich Talebzadeh | Technologist | Data | Generative AI | Financial Fraud
London
United Kingdom

view my Linkedin profile



https://en.everybodywiki.com/Mich_Talebzadeh



Disclaimer: The information provided is correct to the best of my knowledge but of course cannot be guaranteed . It is essential to note that, as with any advice, quote "one test result is worth one-thousand expert opinions (Werner Von Braun)".

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโ€™t want to miss the chance to attend and share knowledge.

If there isnโ€™t a group near you, start one and help create a community that brings people together.

Request a New Group