SlideShare a Scribd company logo
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Hackathon time! Join us for the Docker AI/ML Hackathon now through November 7th. Sign up now ✕
Products Developers Pricing Blog About
Us Partners Sign In Get
Started
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
Cookies Settings Reject All Accept All Cookies
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Ajeet Singh Raina
Kamesh Sampath
Continuous Integration (CI) is a key element of cloud native application development. With containers forming the
Bring Continuous Integration to
Your Laptop With the Drone CI
Docker Extension
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
foundation of cloud-native architectures, developers need to integrate their version control system with a CI tool.
There’s a myth that continuous integration needs a cloud-based infrastructure. Even though CI makes sense for
production releases, developers need to build and test the pipeline before they can share it with their team — or have the
ability to perform the continuous integration (CI) on their laptop. Is that really possible today?
Introducing the Drone CI pipeline
An open-source project called Drone CI makes that a reality. With over 25,700 GitHub stars and 300-plus contributors,
Drone is a cloud-native, self-service CI platform. Drone CI offers a mature, container-based system that leverages the
scaling and fault-tolerance characteristics of cloud-native architectures. It helps you build container-friendly pipelines
that are simple, decoupled, and declarative.
Drone is a container based pipeline engine that lets you run any existing containers as part of your pipeline or package
your build logic into reusable containers called Drone Plugins.
Drone plugins are configurable based on the need and that allows distributing the container within your organization or to
the community in general.
Running Drone CI pipelines from Docker
Desktop
For a developer working with decentralized tools, the task of building and deploying microservice applications can be
monumental. It’s tricky to install, manage, and use these apps in those environments. That’s where Docker Extensions
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
come in. With Docker Extensions, developer tools are integrated right into Docker Desktop — giving you streamlined
management workflows. It’s easier to optimize and transform your development processes.
The Drone CI extension for Docker Desktop brings CI to development machines. You can now import Drone CI pipelines
into Docker Desktop and run them locally. You can also run specific steps of a pipeline, monitor execution results, and
inspect logs.
Setting up a Drone CI pipeline
In this guide, you’ll learn how to set up a Drone CI pipeline from scratch on Docker Desktop.
First, you’ll install the Drone CI Extension within Docker Desktop. Second, you’ll learn how to discover Drone pipelines.
Third, you’ll see how to open a Drone pipeline on Visual Studio Code. Lastly, you’ll discover how to run CI pipelines in
trusted mode, which grants them elevated privileges on the host machine. Let’s jump in.
Prerequisites
You’ll need to download Docker Desktop 4.8 or later before getting started. Make sure to choose the correct version for
your OS and then install it.
Next, hop into Docker Desktop and confirm that the Docker Extensions feature is enabled. Click the Settings gear >
Extensions tab > check the “Enable Docker Extensions” box.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Installing the Drone CI Docker extension
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Drone CI isn’t currently available on the Extensions Marketplace, so you’ll have to download it via the CLI. Launch your
terminal and run the following command to install the Drone CI Extension:
The Drone CI extension will soon appear in the Docker Dashboard’s left sidebar, underneath the Extensions heading:
1 docker extension install drone/drone-ci-docker-extension:latest
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Import Drone pipelines
You can click the “Import Pipelines” option to specify the host filesystem path where your Drone CI pipelines (
drone.yml files) are. If this is your first time with Drone CI pipelines, you can use the examples from our GitHub repo.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
In the recording above, we’ve used the long-run-demo sample to run a local pipeline that executes a long running sleep
command. This occurs within a Docker container.
0:00 / 0:22
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
You can download this pipeline YAML file from the Drone CI GitHub page.
The file starts with a pipeline object that defines your CI pipeline. The type attribute defines your preferred runtime
while executing that pipeline.
Drone supports numerous runners like docker, kubernetes, and more. The extension only supports docker pipelines
currently.
Each pipeline step spins up a Docker container with the corresponding image defined as part of the step image
attribute.
Each step defines an attribute called commands . This is a list of shell commands that we want to execute as part of the
build. The defined list of commands will be converted into shell script and set as Docker container’s ENTRYPOINT . If any
command (for example, the missing yq command, in this case) returns a non-zero exit code, the pipeline fails and exits.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
kind: pipeline
type: docker
name: sleep-demos
steps:
- name: sleep5
image: busybox
pull: if-not-exists
commands:
- x=0;while [ $x -lt 5 ]; do echo "hello"; sleep 1; x=$((x+1)); done
- name: an error step
image: busybox
pull: if-not-exists
commands:
- yq --help
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Edit your pipeline faster in VS Code via Drone
CI
Visual Studio Code (VS Code) is a lightweight, highly-popular IDE. It supports JavaScript, TypeScript, and Node.js. VS
Code also has a rich extensions ecosystem for numerous other languages and runtimes.
Opening your Drone pipeline project in VS Code takes just seconds from within Docker Desktop:
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
This feature helps you quickly view your pipeline and add, edit, or remove steps — then run them from Docker Desktop. It
lets you iterate faster while testing new pipeline changes.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Running specific steps in the CI pipeline
The Drone CI Extension lets you run individual steps within the CI pipeline at any time. To better understand this
functionality, let’s inspect the following Drone YAML file:
In this example, the first pipeline step defined as sleep5 lets you execute a shell script ( echo “hello” ) for five
seconds and then stop (ignoring an error step ).The video below shows you how to run the specific sleep-demos
stage within the pipeline:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
kind: pipeline
type: docker
name: sleep-demos
steps:
- name: sleep5
image: busybox
pull: if-not-exists
commands:
- x=0;while [ $x -lt 5 ]; do echo "hello"; sleep 1; x=$((x+1)); done
- name: an error step
image: busybox
pull: if-not-exists
commands:
- yq --help
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
0:00 / 0:09
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Running steps in trusted mode
Sometimes, you’re required to run a CI pipeline with elevated privileges. These privileges enable a user to systematically
do more than a standard user. This is similar to how we pass the --privileged=true parameter within a docker run
command.
When you execute docker run --privileged , Docker will permit access to all host devices and set configurations in
AppArmor or SELinux. These settings may grant the container nearly equal access to the host as processes running
outside containers on the host.
Drone’s trusted mode tells your container runtime to run the pipeline containers with elevated privileges on the host
machine. Among other things, trusted mode can help you:
Mount the Docker host socket onto the pipeline container
Mount the host path to the Docker container
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
0:00 / 0:26
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Run pipelines using environment
variable files
The Drone CI Extension lets you define environment variables for individual build steps. You can set these within a
pipeline step. Like docker run provides a way to pass environment variables to running containers, Drone lets you pass
usable environment variables to your build. Consider the following Drone YAML file:
The file starts with a pipeline object that defines your CI pipeline. The type attribute defines your preferred runtime
(Docker, in our case) while executing that pipeline. The platform section helps configure the target OS and architecture
(like arm64 ) and routes the pipeline to the appropriate runner. If unspecified, the system defaults to Linux amd64 .
The steps section defines a series of shell commands. These commands run within a busybox Docker container as
the ENTRYPOINT . As shown, the command prints the environment variables if you’ve declared the following environment
variables in your my-env file:
1
2
3
4
5
6
7
8
9
kind: pipeline
type: docker
name: default
steps:
- name: display environment variables
image: busybox
pull: if-not-exists
commands:
- printenv
1
2
DRONE_DESKTOP_FOO=foo
DRONE_DESKTOP_BAR=bar
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
You can choose your preferred environment file and run the CI pipeline (pictured below):
If you try importing the CI pipeline, you can print every environment variable.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Run pipelines with secrets files
We use repository secrets to store and manage sensitive information like passwords, tokens, and ssh keys. Storing this
information as a secret is considered safer than storing it within a plain text configuration file.
Note: Drone masks all values used from secrets while printing them to standard output and error.
The Drone CI Extension lets you choose your preferred secrets file and use it within your CI pipeline as shown below:
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Remove pipelines
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
You can remove a CI pipeline in just one step. Select one or more Drone pipelines and remove them by clicking the red
minus (“-”) button on the right side of the Dashboard. This action will only remove the pipelines from Docker Desktop —
without deleting them from your filesystem.
Bulk remove all pipelines
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Remove a single pipeline
Conclusion
Drone is a modern, powerful, container-friendly CI that empowers busy development teams to automate their workflows.
This dramatically shortens building, testing, and release cycles. With a Drone server, development teams can build and
deploy cloud apps. These harness the scaling and fault-tolerance characteristics of cloud-native architectures like
Kubernetes.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Check out Drone’s documentation to get started with CI on your machine. With the Drone CI extension, developers can
now run their Drone CI pipelines locally as they would in their CI systems.
Want to dive deeper into Docker Extensions? Check out our intro documentation, or discover how to build your own
extensions.
 Docker Desktop, Docker Extensions, Docker Hub
Signing Docker Official Images
Using OpenPubkey
By Jonny Stoten October 13, 2023
Getting Started with JupyterLab
as a Docker Extension
By Marcelo Ochoa October 12, 2023
Security Advisory: High Severity
Curl Vulnerability
By Jonathan Roberts October 5, 2023
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Posted
Sep 20, 2022
Post Tags
Docker Desktop
Docker Extensions
Docker Hub
Categories
Community
Company
Engineering
Products







By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
Products
Docker Personal
Docker Pro
Docker Team
Docker Business
Docker Scout
Desktop vs Docker Engine
Docker Desktop
Docker Hub
Extensions
Secure Software Supply Chain
Container Runtime
Developer Tools
Trusted Content
Docker Product Roadmap
Support
Developers
Docs
Getting Started
Extensions SDK
Community
Open Source
Preview Program
System Status
Pricing
FAQ
Docker Verified Publisher
Partners
Blog
About Us
What is a Container
Why Docker
Events
Swag Store
Newsroom
Careers
Contact Us
Customers
Trademark Guidelines
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.
2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker
© 2023 Docker Inc. All rights reserved | Terms of Service | Privacy | Legal Cookies Settings
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and
assist in our marketing efforts.

More Related Content

Similar to Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension _ Docker.pdf

Docker, Cloud Foundry, Bosh & Bluemix
Docker, Cloud Foundry, Bosh & BluemixDocker, Cloud Foundry, Bosh & Bluemix
Docker, Cloud Foundry, Bosh & Bluemix
IBM
 
HPC Cloud Burst Using Docker
HPC Cloud Burst Using DockerHPC Cloud Burst Using Docker
HPC Cloud Burst Using Docker
IRJET Journal
 
Overview of Docker
Overview of DockerOverview of Docker
Overview of Docker
GauranG Bajpai
 
Common primitives in Docker environments
Common primitives in Docker environmentsCommon primitives in Docker environments
Common primitives in Docker environments
alexandru giurgiu
 
Faster and Easier Software Development using Docker Platform
Faster and Easier Software Development using Docker PlatformFaster and Easier Software Development using Docker Platform
Faster and Easier Software Development using Docker Platform
msyukor
 
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
Erica Windisch
 
До чого прикладати Docker в Android? - UA Mobile 2019
До чого прикладати Docker в Android? - UA Mobile 2019До чого прикладати Docker в Android? - UA Mobile 2019
До чого прикладати Docker в Android? - UA Mobile 2019
UA Mobile
 
Docker and containerization
Docker and containerizationDocker and containerization
Docker and containerization
Amulya Saxena
 
presentation @ docker meetup
presentation @ docker meetuppresentation @ docker meetup
presentation @ docker meetup
Daniël van Gils
 
Couchbase on Docker - Couchbase Connect 2015
Couchbase on Docker - Couchbase Connect 2015Couchbase on Docker - Couchbase Connect 2015
Couchbase on Docker - Couchbase Connect 2015
Patrick Chanezon
 
What-Is-Docker?
What-Is-Docker?What-Is-Docker?
What-Is-Docker?
VinamraPatil2
 
Docker for Developers
Docker for DevelopersDocker for Developers
Docker for Developers
JasonStraughan1
 
Docker Container As A Service - Mix-IT 2016
Docker Container As A Service - Mix-IT 2016Docker Container As A Service - Mix-IT 2016
Docker Container As A Service - Mix-IT 2016
Patrick Chanezon
 
Production sec ops with kubernetes in docker
Production sec ops with kubernetes in dockerProduction sec ops with kubernetes in docker
Production sec ops with kubernetes in docker
Docker, Inc.
 
Docker - Der Wal in der Kiste
Docker - Der Wal in der KisteDocker - Der Wal in der Kiste
Docker - Der Wal in der Kiste
Ulrich Krause
 
Docker - A Quick Introduction Guide
Docker - A Quick Introduction GuideDocker - A Quick Introduction Guide
Docker - A Quick Introduction Guide
Mohammed Fazuluddin
 
Docker Basic to Advance
Docker Basic to AdvanceDocker Basic to Advance
Docker Basic to Advance
Paras Jain
 
Docker - A high level introduction to dockers and containers
Docker - A high level introduction to dockers and containersDocker - A high level introduction to dockers and containers
Docker - A high level introduction to dockers and containers
Dr Ganesh Iyer
 
VS Code tools for docker
VS Code tools for dockerVS Code tools for docker
VS Code tools for docker
Alessandro Melchiori
 
Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016
Roberto Sanz Ciriano
 

Similar to Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension _ Docker.pdf (20)

Docker, Cloud Foundry, Bosh & Bluemix
Docker, Cloud Foundry, Bosh & BluemixDocker, Cloud Foundry, Bosh & Bluemix
Docker, Cloud Foundry, Bosh & Bluemix
 
HPC Cloud Burst Using Docker
HPC Cloud Burst Using DockerHPC Cloud Burst Using Docker
HPC Cloud Burst Using Docker
 
Overview of Docker
Overview of DockerOverview of Docker
Overview of Docker
 
Common primitives in Docker environments
Common primitives in Docker environmentsCommon primitives in Docker environments
Common primitives in Docker environments
 
Faster and Easier Software Development using Docker Platform
Faster and Easier Software Development using Docker PlatformFaster and Easier Software Development using Docker Platform
Faster and Easier Software Development using Docker Platform
 
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
Practical Docker for OpenStack - NYC / PHL OpenStack meetup (4-23-2014)
 
До чого прикладати Docker в Android? - UA Mobile 2019
До чого прикладати Docker в Android? - UA Mobile 2019До чого прикладати Docker в Android? - UA Mobile 2019
До чого прикладати Docker в Android? - UA Mobile 2019
 
Docker and containerization
Docker and containerizationDocker and containerization
Docker and containerization
 
presentation @ docker meetup
presentation @ docker meetuppresentation @ docker meetup
presentation @ docker meetup
 
Couchbase on Docker - Couchbase Connect 2015
Couchbase on Docker - Couchbase Connect 2015Couchbase on Docker - Couchbase Connect 2015
Couchbase on Docker - Couchbase Connect 2015
 
What-Is-Docker?
What-Is-Docker?What-Is-Docker?
What-Is-Docker?
 
Docker for Developers
Docker for DevelopersDocker for Developers
Docker for Developers
 
Docker Container As A Service - Mix-IT 2016
Docker Container As A Service - Mix-IT 2016Docker Container As A Service - Mix-IT 2016
Docker Container As A Service - Mix-IT 2016
 
Production sec ops with kubernetes in docker
Production sec ops with kubernetes in dockerProduction sec ops with kubernetes in docker
Production sec ops with kubernetes in docker
 
Docker - Der Wal in der Kiste
Docker - Der Wal in der KisteDocker - Der Wal in der Kiste
Docker - Der Wal in der Kiste
 
Docker - A Quick Introduction Guide
Docker - A Quick Introduction GuideDocker - A Quick Introduction Guide
Docker - A Quick Introduction Guide
 
Docker Basic to Advance
Docker Basic to AdvanceDocker Basic to Advance
Docker Basic to Advance
 
Docker - A high level introduction to dockers and containers
Docker - A high level introduction to dockers and containersDocker - A high level introduction to dockers and containers
Docker - A high level introduction to dockers and containers
 
VS Code tools for docker
VS Code tools for dockerVS Code tools for docker
VS Code tools for docker
 
Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016
 

Recently uploaded

22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
enizeyimana36
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
abbyasa1014
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
zubairahmad848137
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
rpskprasana
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 

Recently uploaded (20)

22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 

Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension _ Docker.pdf

  • 1. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Hackathon time! Join us for the Docker AI/ML Hackathon now through November 7th. Sign up now ✕ Products Developers Pricing Blog About Us Partners Sign In Get Started By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. Cookies Settings Reject All Accept All Cookies
  • 2. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Ajeet Singh Raina Kamesh Sampath Continuous Integration (CI) is a key element of cloud native application development. With containers forming the Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 3. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker foundation of cloud-native architectures, developers need to integrate their version control system with a CI tool. There’s a myth that continuous integration needs a cloud-based infrastructure. Even though CI makes sense for production releases, developers need to build and test the pipeline before they can share it with their team — or have the ability to perform the continuous integration (CI) on their laptop. Is that really possible today? Introducing the Drone CI pipeline An open-source project called Drone CI makes that a reality. With over 25,700 GitHub stars and 300-plus contributors, Drone is a cloud-native, self-service CI platform. Drone CI offers a mature, container-based system that leverages the scaling and fault-tolerance characteristics of cloud-native architectures. It helps you build container-friendly pipelines that are simple, decoupled, and declarative. Drone is a container based pipeline engine that lets you run any existing containers as part of your pipeline or package your build logic into reusable containers called Drone Plugins. Drone plugins are configurable based on the need and that allows distributing the container within your organization or to the community in general. Running Drone CI pipelines from Docker Desktop For a developer working with decentralized tools, the task of building and deploying microservice applications can be monumental. It’s tricky to install, manage, and use these apps in those environments. That’s where Docker Extensions By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 4. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker come in. With Docker Extensions, developer tools are integrated right into Docker Desktop — giving you streamlined management workflows. It’s easier to optimize and transform your development processes. The Drone CI extension for Docker Desktop brings CI to development machines. You can now import Drone CI pipelines into Docker Desktop and run them locally. You can also run specific steps of a pipeline, monitor execution results, and inspect logs. Setting up a Drone CI pipeline In this guide, you’ll learn how to set up a Drone CI pipeline from scratch on Docker Desktop. First, you’ll install the Drone CI Extension within Docker Desktop. Second, you’ll learn how to discover Drone pipelines. Third, you’ll see how to open a Drone pipeline on Visual Studio Code. Lastly, you’ll discover how to run CI pipelines in trusted mode, which grants them elevated privileges on the host machine. Let’s jump in. Prerequisites You’ll need to download Docker Desktop 4.8 or later before getting started. Make sure to choose the correct version for your OS and then install it. Next, hop into Docker Desktop and confirm that the Docker Extensions feature is enabled. Click the Settings gear > Extensions tab > check the “Enable Docker Extensions” box. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 5. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Installing the Drone CI Docker extension By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 6. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Drone CI isn’t currently available on the Extensions Marketplace, so you’ll have to download it via the CLI. Launch your terminal and run the following command to install the Drone CI Extension: The Drone CI extension will soon appear in the Docker Dashboard’s left sidebar, underneath the Extensions heading: 1 docker extension install drone/drone-ci-docker-extension:latest By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 7. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Import Drone pipelines You can click the “Import Pipelines” option to specify the host filesystem path where your Drone CI pipelines ( drone.yml files) are. If this is your first time with Drone CI pipelines, you can use the examples from our GitHub repo. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 8. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker In the recording above, we’ve used the long-run-demo sample to run a local pipeline that executes a long running sleep command. This occurs within a Docker container. 0:00 / 0:22 By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 9. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker You can download this pipeline YAML file from the Drone CI GitHub page. The file starts with a pipeline object that defines your CI pipeline. The type attribute defines your preferred runtime while executing that pipeline. Drone supports numerous runners like docker, kubernetes, and more. The extension only supports docker pipelines currently. Each pipeline step spins up a Docker container with the corresponding image defined as part of the step image attribute. Each step defines an attribute called commands . This is a list of shell commands that we want to execute as part of the build. The defined list of commands will be converted into shell script and set as Docker container’s ENTRYPOINT . If any command (for example, the missing yq command, in this case) returns a non-zero exit code, the pipeline fails and exits. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 kind: pipeline type: docker name: sleep-demos steps: - name: sleep5 image: busybox pull: if-not-exists commands: - x=0;while [ $x -lt 5 ]; do echo "hello"; sleep 1; x=$((x+1)); done - name: an error step image: busybox pull: if-not-exists commands: - yq --help By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 10. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 11. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 12. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Edit your pipeline faster in VS Code via Drone CI Visual Studio Code (VS Code) is a lightweight, highly-popular IDE. It supports JavaScript, TypeScript, and Node.js. VS Code also has a rich extensions ecosystem for numerous other languages and runtimes. Opening your Drone pipeline project in VS Code takes just seconds from within Docker Desktop: By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 13. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker This feature helps you quickly view your pipeline and add, edit, or remove steps — then run them from Docker Desktop. It lets you iterate faster while testing new pipeline changes. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 14. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Running specific steps in the CI pipeline The Drone CI Extension lets you run individual steps within the CI pipeline at any time. To better understand this functionality, let’s inspect the following Drone YAML file: In this example, the first pipeline step defined as sleep5 lets you execute a shell script ( echo “hello” ) for five seconds and then stop (ignoring an error step ).The video below shows you how to run the specific sleep-demos stage within the pipeline: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 kind: pipeline type: docker name: sleep-demos steps: - name: sleep5 image: busybox pull: if-not-exists commands: - x=0;while [ $x -lt 5 ]; do echo "hello"; sleep 1; x=$((x+1)); done - name: an error step image: busybox pull: if-not-exists commands: - yq --help By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 15. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker 0:00 / 0:09 By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 16. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Running steps in trusted mode Sometimes, you’re required to run a CI pipeline with elevated privileges. These privileges enable a user to systematically do more than a standard user. This is similar to how we pass the --privileged=true parameter within a docker run command. When you execute docker run --privileged , Docker will permit access to all host devices and set configurations in AppArmor or SELinux. These settings may grant the container nearly equal access to the host as processes running outside containers on the host. Drone’s trusted mode tells your container runtime to run the pipeline containers with elevated privileges on the host machine. Among other things, trusted mode can help you: Mount the Docker host socket onto the pipeline container Mount the host path to the Docker container By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 17. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker 0:00 / 0:26 By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 18. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Run pipelines using environment variable files The Drone CI Extension lets you define environment variables for individual build steps. You can set these within a pipeline step. Like docker run provides a way to pass environment variables to running containers, Drone lets you pass usable environment variables to your build. Consider the following Drone YAML file: The file starts with a pipeline object that defines your CI pipeline. The type attribute defines your preferred runtime (Docker, in our case) while executing that pipeline. The platform section helps configure the target OS and architecture (like arm64 ) and routes the pipeline to the appropriate runner. If unspecified, the system defaults to Linux amd64 . The steps section defines a series of shell commands. These commands run within a busybox Docker container as the ENTRYPOINT . As shown, the command prints the environment variables if you’ve declared the following environment variables in your my-env file: 1 2 3 4 5 6 7 8 9 kind: pipeline type: docker name: default steps: - name: display environment variables image: busybox pull: if-not-exists commands: - printenv 1 2 DRONE_DESKTOP_FOO=foo DRONE_DESKTOP_BAR=bar By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 19. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker You can choose your preferred environment file and run the CI pipeline (pictured below): If you try importing the CI pipeline, you can print every environment variable. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 20. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Run pipelines with secrets files We use repository secrets to store and manage sensitive information like passwords, tokens, and ssh keys. Storing this information as a secret is considered safer than storing it within a plain text configuration file. Note: Drone masks all values used from secrets while printing them to standard output and error. The Drone CI Extension lets you choose your preferred secrets file and use it within your CI pipeline as shown below: By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 21. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Remove pipelines By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 22. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker You can remove a CI pipeline in just one step. Select one or more Drone pipelines and remove them by clicking the red minus (“-”) button on the right side of the Dashboard. This action will only remove the pipelines from Docker Desktop — without deleting them from your filesystem. Bulk remove all pipelines By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 23. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Remove a single pipeline Conclusion Drone is a modern, powerful, container-friendly CI that empowers busy development teams to automate their workflows. This dramatically shortens building, testing, and release cycles. With a Drone server, development teams can build and deploy cloud apps. These harness the scaling and fault-tolerance characteristics of cloud-native architectures like Kubernetes. By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 24. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Check out Drone’s documentation to get started with CI on your machine. With the Drone CI extension, developers can now run their Drone CI pipelines locally as they would in their CI systems. Want to dive deeper into Docker Extensions? Check out our intro documentation, or discover how to build your own extensions.  Docker Desktop, Docker Extensions, Docker Hub Signing Docker Official Images Using OpenPubkey By Jonny Stoten October 13, 2023 Getting Started with JupyterLab as a Docker Extension By Marcelo Ochoa October 12, 2023 Security Advisory: High Severity Curl Vulnerability By Jonathan Roberts October 5, 2023 By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 25. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Posted Sep 20, 2022 Post Tags Docker Desktop Docker Extensions Docker Hub Categories Community Company Engineering Products        By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 26. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker Products Docker Personal Docker Pro Docker Team Docker Business Docker Scout Desktop vs Docker Engine Docker Desktop Docker Hub Extensions Secure Software Supply Chain Container Runtime Developer Tools Trusted Content Docker Product Roadmap Support Developers Docs Getting Started Extensions SDK Community Open Source Preview Program System Status Pricing FAQ Docker Verified Publisher Partners Blog About Us What is a Container Why Docker Events Swag Store Newsroom Careers Contact Us Customers Trademark Guidelines By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
  • 27. 2023/10/20 上午9:14 Bring Continuous Integration to Your Laptop With the Drone CI Docker Extension | Docker © 2023 Docker Inc. All rights reserved | Terms of Service | Privacy | Legal Cookies Settings By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.