Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorials/deploy-container-using-the-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This tutorial will show you how to deploy an existing container/multi-container

This is rather useful if you already have a Docker container built manually, or through a CI/CD system (where the resulting image is available in a public or private repository accessible by Defang), but it is not required in order to follow along.

# Step 1 - Make a Docker Compose file
## Step 1 - Make a Docker Compose file
:::tip
If you are unfamiliar with Docker Compose files, check out the [Compose](/docs/concepts/compose) page.
:::
Expand Down Expand Up @@ -44,7 +44,7 @@ services:
The example above shows a multi-container application with 3 services, `web`, `app`, `redis`.
If you wanted to deploy only one container, say `app`, then the example would remain the same, except without the `web` and `redis` services.

# Step 2 - Deploy
## Step 2 - Deploy
Run the following command in the [Defang CLI](/docs/getting-started#install-the-defang-cli).
```text
defang compose up
Expand Down
Loading