docs: address issue #24394

This change was automatically generated by the documentation agent team
in response to issue #24394.

🤖 Generated with cagent
This commit is contained in:
dvdksn
2026-03-19 08:24:01 +00:00
committed by github-actions[bot]
parent 3d441545df
commit 3e21d7caaa

View File

@@ -9,7 +9,7 @@ summary: |
seamless integration and testing.
weight: 2
aliases:
- /guides/getting-started/develop-with-containers/
- /guides/getting-started/develop-with-containers/
---
{{< youtube-embed D0SDBrS3t9I >}}
@@ -26,25 +26,23 @@ Now that you have Docker Desktop installed, you are ready to do some application
In this hands-on guide, you'll learn how to develop with containers.
## Start the project
1. To get started, either clone or [download the project as a ZIP file](https://github.com/docker/getting-started-todo-app/archive/refs/heads/main.zip) to your local machine.
```console
$ git clone https://github.com/docker/getting-started-todo-app
```
```console
$ git clone https://github.com/docker/getting-started-todo-app
```
And after the project is cloned, navigate into the new directory created by the clone:
And after the project is cloned, navigate into the new directory created by the clone:
```console
$ cd getting-started-todo-app
```
```console
$ cd getting-started-todo-app
```
2. Once you have the project, start the development environment using Docker Compose.
To start the project using the CLI, run the following command:
To start the project using the CLI, run the following command:
```console
$ docker compose watch
@@ -52,11 +50,9 @@ In this hands-on guide, you'll learn how to develop with containers.
You will see an output that shows container images being pulled down, containers starting, and more. Don't worry if you don't understand it all at this point. But, within a moment or two, things should stabilize and finish.
3. Open your browser to [http://localhost](http://localhost) to see the application up and running. It may take a few minutes for the app to run. The app is a simple to-do application, so feel free to add an item or two, mark some as done, or even delete an item.
![Screenshot of the getting started to-do app after its first launch](images/develop-getting-started-app-first-launch.webp)
![Screenshot of the getting started to-do app after its first launch](images/develop-getting-started-app-first-launch.webp)
### What's in the environment?
@@ -70,7 +66,6 @@ Now that the environment is up and running, what's actually in it? At a high-lev
With this environment, you as the developer dont need to install or configure any services, populate a database schema, configure database credentials, or anything. You only need Docker Desktop. The rest just works.
## Make changes to the app
With this environment up and running, youre ready to make a few changes to the application and see how Docker helps provide a fast feedback loop.
@@ -79,77 +74,78 @@ With this environment up and running, youre ready to make a few changes to th
The greeting at the top of the page is populated by an API call at `/api/greeting`. Currently, it always returns "Hello world!". Youll now modify it to return one of three randomized messages (that you'll get to choose).
1. Open the `backend/src/routes/getGreeting.js` file in a text editor. This file provides the handler for the API endpoint.
1. Open the `backend/src/routes/getGreeting.js` file in a text editor on
your local machine (in the cloned project directory). This file provides
the handler for the API endpoint. Your changes will automatically sync to
the running container.
2. Modify the variable at the top to an array of greetings. Feel free to use the following modifications or customize it to your own liking. Also, update the endpoint to send a random greeting from this list.
```js {linenos=table,hl_lines=["1-5",9],linenostart=1}
const GREETINGS = [
"Whalecome!",
"All hands on deck!",
"Charting the course ahead!",
];
```js {linenos=table,hl_lines=["1-5",9],linenostart=1}
const GREETINGS = [
"Whalecome!",
"All hands on deck!",
"Charting the course ahead!",
];
module.exports = async (req, res) => {
res.send({
greeting: GREETINGS[ Math.floor( Math.random() * GREETINGS.length )],
});
};
```
module.exports = async (req, res) => {
res.send({
greeting: GREETINGS[Math.floor(Math.random() * GREETINGS.length)],
});
};
```
3. If you haven't done so yet, save the file. If you refresh your browser, you should see a new greeting. If you keep refreshing, you should see all of the messages appear.
![Screenshot of the to-do app with a new greeting](images/develop-app-with-greetings.webp)
![Screenshot of the to-do app with a new greeting](images/develop-app-with-greetings.webp)
### Change the placeholder text
When you look at the app, you'll see the placeholder text is simply "New Item". Youll now make that a little more descriptive and fun. Youll also make a few changes to the styling of the app too.
1. Open the `client/src/components/AddNewItemForm.jsx` file. This provides the component to add a new item to the to-do list.
1. Open the `client/src/components/AddNewItemForm.jsx` file in your local
project directory. This provides the component to add a new item to the
to-do list.
2. Modify the `placeholder` attribute of the `Form.Control` element to whatever you'd like to display.
```js {linenos=table,hl_lines=[5],linenostart=33}
<Form.Control
value={newItem}
onChange={(e) => setNewItem(e.target.value)}
type="text"
placeholder="What do you need to do?"
aria-label="New item"
/>
```
```js {linenos=table,hl_lines=[5],linenostart=33}
<Form.Control
value={newItem}
onChange={(e) => setNewItem(e.target.value)}
type="text"
placeholder="What do you need to do?"
aria-label="New item"
/>
```
3. Save the file and go back to your browser. You should see the change already hot-reloaded into your browser. If you don't like it, feel free to tweak it until it looks just right.
![Screenshot of the to-do app with an updated placeholder in the add item text field"](images/develop-app-with-updated-placeholder.webp)
### Change the background color
Before you consider the application finalized, you need to make the colors better.
1. Open the `client/src/index.scss` file.
1. Open the `client/src/index.scss` file in your local project directory.
2. Adjust the `background-color` attribute to any color you'd like. The provided snippet is a soft blue to go along with Docker's nautical theme.
If you're using an IDE, you can pick a color using the integrated color pickers. Otherwise, feel free to use an online [Color Picker](https://www.w3schools.com/colors/colors_picker.asp).
If you're using an IDE, you can pick a color using the integrated color pickers. Otherwise, feel free to use an online [Color Picker](https://www.w3schools.com/colors/colors_picker.asp).
```css {linenos=table,hl_lines=2,linenostart=3}
body {
background-color: #99bbff;
margin-top: 50px;
font-family: 'Lato';
}
```
```css {linenos=table,hl_lines=2,linenostart=3}
body {
background-color: #99bbff;
margin-top: 50px;
font-family: "Lato";
}
```
Each save should let you see the change immediately in the browser. Keep adjusting it until it's the perfect setup for you.
Each save should let you see the change immediately in the browser. Keep adjusting it until it's the perfect setup for you.
![Screenshot of the to-do app with a new placeholder and background color"](images/develop-app-with-updated-client.webp)
![Screenshot of the to-do app with a new placeholder and background color"](images/develop-app-with-updated-client.webp)
And with that, you're done. Congrats on updating your website.
And with that, you're done. Congrats on updating your website.
## Recap
@@ -157,7 +153,11 @@ Before you move on, take a moment and reflect on what happened here. Within a fe
- Start a complete development project with zero installation effort. The containerized environment provided the development environment, ensuring you have everything you need. You didn't have to install Node, MySQL, or any of the other dependencies directly on your machine. All you needed was Docker Desktop and a code editor.
- Make changes and see them immediately. This was made possible because 1) the processes running in each container are watching and responding to file changes and 2) the files are shared with the containerized environment.
- Make changes and see them immediately. This was made possible because
1. the processes running in each container are watching and responding to
file changes and 2) the files in your local project directory are shared
with the containerized environment, so edits you make locally are
automatically synced to the containers.
Docker Desktop enables all of this and so much more. Once you start thinking with containers, you can create almost any environment and easily share it with your team.
@@ -166,4 +166,3 @@ Docker Desktop enables all of this and so much more. Once you start thinking wit
Now that the application has been updated, youre ready to learn about packaging it as a container image and pushing it to a registry, specifically Docker Hub.
{{< button text="Build and push your first image" url="build-and-push-first-image" >}}