blob: 678e8dac30d4609871c6af1d925c27efa8efc444 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# ddev delere
Delete the environment and the containers completely.
Any changes you have made to the file system is kept, but the database etc is destroyed.
The `--omit-snapshots` argument, if specified, tells DDEV to _not_ keep a dump of
the database content for later. If you want it to dump the database so you can
load it back at a later time, don't use this argument.
**Example:**
```bash
$ ddev delete --omit-snapshot
```
|