2nd chunk of `content/get-started/docker-concepts/the-basics/what-is-a-container.md`
1d11c6e00b268071e7df9c5d9e7efc95dd1b657f815e54630000000100000df0
Use the following instructions to run a container.
1. Open Docker Desktop and select the **Search** field on the top navigation bar.
2. Specify `welcome-to-docker` in the search input and then select the **Pull** button.

3. Once the image is successfully pulled, select the **Run** button.
4. Expand the **Optional settings**.
5. In the **Container name**, specify `welcome-to-docker`.
6. In the **Host port**, specify `8080`.

7. Select **Run** to start your container.
Congratulations! You just ran your first container! 🎉
### View your container
You can view all of your containers by going to the **Containers** view of the Docker Desktop Dashboard.

This container runs a web server that displays a simple website. When working with more complex projects, you'll run different parts in different containers. For example, you might run a different container for the frontend, backend, and database.
### Access the frontend
When you launched the container, you exposed one of the container's ports onto your machine. Think of this as creating configuration to let you to connect through the isolated environment of the container.
For this container, the frontend is accessible on port `8080`. To open the website, select the link in the **Port(s)** column of your container or visit [http://localhost:8080](http://localhost:8080) in your browser.

### Explore your container
Docker Desktop lets you explore and interact with different aspects of your container. Try it out yourself.
1. Go to the **Containers** view in the Docker Desktop Dashboard.
2. Select your container.
3. Select the **Files** tab to explore your container's isolated file system.

### Stop your container
The `docker/welcome-to-docker` container continues to run until you stop it.
1. Go to the **Containers** view in the Docker Desktop Dashboard.
2. Locate the container you'd like to stop.
3. Select the **Stop** action in the **Actions** column.
