mirror of
https://github.com/docker/docs.git
synced 2026-03-31 08:18:55 +07:00
* docs: add language specific guide for c++ * docs: add C++ language support to the language index page * docs: Update _index.md * docs: update C++ guide paths * Update content/language/c-plus-plus/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/develop.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update content/language/c-plus-plus/configure-ci-cd.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> * Update _index.md * guides: use /cpp instead of /c-plus-plus Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> * Update content/language/cpp/develop.md Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> * Update content/language/cpp/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> --------- Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
25 lines
1.0 KiB
Markdown
25 lines
1.0 KiB
Markdown
---
|
|
description: Containerize and develop C++ applications using Docker.
|
|
keywords: getting started, c++
|
|
title: C++ language-specific guide
|
|
toc_min: 1
|
|
toc_max: 2
|
|
---
|
|
|
|
The C++ getting started guide teaches you how to create a containerized C++ application using Docker. In this guide, you'll learn how to:
|
|
|
|
> **Acknowledgment**
|
|
>
|
|
> Docker would like to thank [Pradumna Saraf](https://twitter.com/pradumna_saraf) for his contribution to this guide.
|
|
|
|
* Containerize and run a C++ application
|
|
* Set up a local environment to develop a C++ application using containers
|
|
* Configure a CI/CD pipeline for a containerized C++ application using GitHub Actions
|
|
* Deploy your containerized application locally to Kubernetes to test and debug your deployment
|
|
|
|
After completing the C++ getting started modules, you should be able to containerize your own C++ application based on the examples and instructions provided in this guide.
|
|
|
|
Start by containerizing an existing C++ application.
|
|
|
|
{{< button text="Containerize a C++ app" url="containerize.md" >}}
|