mirror of https://github.com/docker/docs.git
WIP: graphical and format updates for workflow steps on home page
simplified the workflow title WIP: graphical and format updates for workflow steps on home page working on better formatting for subtopic bullets formatting updates and wording tweaks to workflow on home page wording tweak on app tutorial where to learn more Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
This commit is contained in:
parent
230940f7f0
commit
392e93a277
|
@ -1,20 +1,23 @@
|
||||||
### Typical Docker Platform Workflow
|
### Typical Docker workflow
|
||||||
|
|
||||||
1. Get your code and its dependencies into Docker [containers](engine/getstarted/step_two.md):
|
<span style="font-size: 122%; color: #5D6D7E; font-weight: 150;">① Get your code and its dependencies into Docker [containers](engine/getstarted/step_two.md).</span>
|
||||||
- [Write a Dockerfile](engine/getstarted/step_four.md) that specifies the execution
|
|
||||||
environment and pulls in your code.
|
<span style="font-size: 110%; color: #5D6D7E; font-weight: 150; display: block; padding-left: 2em;">- [Write a Dockerfile](engine/getstarted/step_four.md) that
|
||||||
- If your app depends on external applications (such as Redis, or
|
defines the execution environment and pulls in your code.</span>
|
||||||
MySQL), simply [find them on a registry such as Docker Hub](docker-hub/repos.md), and refer to them in
|
|
||||||
[a Docker Compose file](compose/overview.md), along with a reference to your application, so they'll run
|
<span style="font-size: 110%; color: #5D6D7E; font-weight: 150; display: block; padding-left: 2em;">- If your app depends on external services (such as Redis or MySQL), [find them on a registry like Docker Hub](docker-hub/repos.md), and refer to them in [a Docker Compose file](compose/overview.md), along with a call to your app, so they'll run simultaneously.</span>
|
||||||
simultaneously.
|
|
||||||
- Software providers also distribute paid software via the [Docker Store](https://store.docker.com).
|
<span style="font-size: 110%; color: #5D6D7E; font-weight: 150; display: block; padding-left: 2em;">- Software providers also distribute paid software on the [Docker Store](https://store.docker.com).</span>
|
||||||
- Build, then run your containers on a virtual host via [Docker Machine](machine/overview.md) as you develop.
|
|
||||||
2. Configure [networking](engine/tutorials/networkingcontainers.md) and
|
<span style="font-size: 110%; color: #5D6D7E; font-weight: 150; display: block; padding-left: 2em;">- Build, then run your containers on a virtual host with [Docker Machine](machine/overview.md) as you develop.</span>
|
||||||
[storage](engine/tutorials/dockervolumes.md) for your solution, if needed.
|
<p />
|
||||||
3. Upload builds to a registry ([ours](/engine/getstarted/step_six.md), [yours](/datacenter/dtr/2.0/index.md), or your cloud provider's), to collaborate with your team.
|
<span style="font-size: 122%; color: #5D6D7E; font-weight: 150;">② Configure [networking](engine/tutorials/networkingcontainers.md) and [storage](engine/tutorials/dockervolumes.md) for your solution, if needed.</span>
|
||||||
4. If you're gonna need to scale your solution across multiple hosts (VMs or physical machines), [plan
|
|
||||||
for how you'll set up your Swarm cluster](engine/swarm/key-concepts.md) and [scale it to meet demand](engine/swarm/swarm-tutorial/index.md).
|
<span style="font-size: 122%; color: #5D6D7E; font-weight: 150;">③ Upload builds to a registry ([ours](/engine/getstarted/step_six.md) or [yours](/datacenter/dtr/2.0/index.md)) or your cloud providers to collaborate with your team.</span>
|
||||||
- Note: Use [Universal Control Plane](/datacenter/ucp/1.1/overview.md) and you can manage your
|
|
||||||
Swarm cluster using a friendly UI!
|
<span style="font-size: 122%; color: #5D6D7E; font-weight: 150;">④
|
||||||
5. Finally, deploy to your preferred
|
To run your app as a set of services across multiple hosts, [set up a Swarm cluster](/engine/swarm/index.md) and
|
||||||
cloud provider (or, for redundancy, *multiple* cloud providers) with [Docker Cloud](/docker-cloud/index.md). Or, use [Docker Datacenter](https://www.docker.com/products/docker-datacenter), and deploy to your own on-premise hardware.
|
[scale it to meet demand](/engine/swarm/swarm-tutorial/scale-service.md). Use [Universal Control Plane](/datacenter/ucp/1.1/overview.md) to manage your swarm in a friendly UI!</span>
|
||||||
|
|
||||||
|
<span style="font-size: 122%; color: #5D6D7E; font-weight: 150;">⑤
|
||||||
|
Deploy to your preferred cloud providers with [Docker Cloud](/docker-cloud/index.md), or use [Docker Datacenter](https://www.docker.com/products/docker-datacenter) to deploy to your own on-premise hardware.</span>
|
||||||
|
|
|
@ -136,6 +136,7 @@
|
||||||
}
|
}
|
||||||
/* reset away from #008AB5 */
|
/* reset away from #008AB5 */
|
||||||
|
|
||||||
|
/* removed hard-coded color for button links pre new CSS from Design */
|
||||||
#DocumentationText a.button {
|
#DocumentationText a.button {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,6 +145,7 @@
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* hard coded color and other settings pre new CSS from Design */
|
||||||
#DocumentationText .secondary-btn,
|
#DocumentationText .secondary-btn,
|
||||||
button .secondary-btn {
|
button .secondary-btn {
|
||||||
border: 2px solid #1488c6;
|
border: 2px solid #1488c6;
|
||||||
|
@ -165,6 +167,12 @@
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* box shadow for docs home page workflow*/
|
||||||
|
|
||||||
|
#DocumentationText .boxer
|
||||||
|
{box-shadow: 2px 2px #888, -2px -2px #F4D03F, 0px 0px 5px 5px #F4D03F;
|
||||||
|
}
|
||||||
|
|
||||||
#DocumentationText table {
|
#DocumentationText table {
|
||||||
margin: 1.25rem 0;
|
margin: 1.25rem 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -87,7 +87,7 @@ networking.
|
||||||
[Build your own image](/engine/getstarted/step_four.md) in Get Started with
|
[Build your own image](/engine/getstarted/step_four.md) in Get Started with
|
||||||
Docker and topics on images in [Learn by example](/engine/tutorials/index.md).
|
Docker and topics on images in [Learn by example](/engine/tutorials/index.md).
|
||||||
|
|
||||||
* For more about `docker-stack.yml` and the `docker stack deploy` command,
|
* For more about the `docker-stack.yml` and the `docker stack deploy` commands,
|
||||||
see [deploy](/compose/compose-file.md#deploy) in the [Compose file
|
see [deploy](/compose/compose-file.md#deploy) in the [Compose file
|
||||||
reference](/compose/compose-file.md) and [`docker stack
|
reference](/compose/compose-file.md) and [`docker stack
|
||||||
deploy`](/engine/reference/commandline/stack_deploy.md) in the Docker Engine
|
deploy`](/engine/reference/commandline/stack_deploy.md) in the Docker Engine
|
||||||
|
|
Loading…
Reference in New Issue