mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
* Fix incorrect links in compose section there's a bug causing wrapped links to not work, and replacing some links to point to the .md file, so that IDE's can check if the anchors are valid. Also replaced some links to point to their new location. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * engine/swarm: update links Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * Fix various broken links There's a bug in the "jekyll-relative-links" plugin that causes wrapped links to not work. Also replacing some links to point to the .md file, so that IDE's can check if the anchors are valid. Finally, replaced some links to point to their new locations, so that users don't get redirected.. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2.1 KiB
2.1 KiB
title, description, keywords
| title | description | keywords |
|---|---|---|
| Develop with Docker | Overview of developer resources | developer, developing, apps, api, sdk |
This page contains a list of resources for application developers who would like to build new applications using Docker.
Prerequisites
Work through the learning modules in Get started to understand how to build an image and run it as a containerized application.
Develop new apps on Docker
If you're just getting started developing a brand new app on Docker, check out these resources to understand some of the most common patterns for getting the most benefits from Docker.
- Use multistage builds{: target="blank" class=""} to keep your images lean
- Manage application data using volumes and bind mounts{: target="blank" class=""}
- Scale your app{: target="blank" class=""} with kubernetes
- Scale your app{: target="blank" class=""} as a swarm service
- General application development best practices{: target="blank" class=""}
Learn about language-specific app development with Docker
- Docker for Java developers{: target="blank" class=""} lab
- Port a node.js app to Docker{: target="blank" class=""}
- Ruby on Rails app on Docker{: target="blank" class=""} lab
- Dockerize a .Net Core application{: target="blank" class=""}
- Dockerize an ASP.NET Core application with SQL Server on Linux{: target="blank" class=""} using Docker Compose
Advanced development with the SDK or API
After you can write Dockerfiles or Compose files and use Docker CLI, take it to the next level by using Docker Engine SDK for Go/Python or use the HTTP API directly.