Skip to content

Commit

Permalink
move non-destructive teardown instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
conceptualshark committed Jan 8, 2025
1 parent 556f9ef commit bf00bfb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/self-managed/setup/deploy/local/docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,16 @@ Run the following command to stop Camunda 8:
docker compose down -v
```

:::caution
This will also delete any data you created.
:::

To tear down the environment and keep any data, run the following command:

```shell
docker compose down
```

Zeebe, Operate, Tasklist, along with Optimize require a separate network from Identity as you'll see in the docker-compose file.

## Modeling and process execution
Expand All @@ -99,16 +109,6 @@ To tear down the environment (including all data and volumes), run the following
docker compose -f docker-compose-web-modeler.yaml down -v
```

:::caution
This will also delete any data you created.
:::

To tear down the environment and keep any data, run the following command:

```shell
docker compose -f docker-compose-web-modeler.yaml down
```

#### Deploy or execute a process

The local Zeebe instance started when using the provided `docker-compose.yaml` is pre-configured in Web Modeler.
Expand Down

0 comments on commit bf00bfb

Please sign in to comment.