Update Docker Compose commands in page documenting Docker Compose deployment (#644)

This commit is contained in:
rl1987 2024-12-12 17:21:16 +04:00 committed by GitHub
parent 20405ee606
commit b782631709
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ import CloudVersion from "/snippets/cloud-version.mdx";
4. Start the application:
```bash
docker-compose up -d
docker compose up -d
```
5. Access OpnForm at http://localhost
@ -98,8 +98,8 @@ services:
### Clearing all resources
To completely remove all Docker containers, networks, and volumes created by docker-compose and also remove all images used by these services, you can use the following command:
To completely remove all Docker containers, networks, and volumes created by Docker Compose and also remove all images used by these services, you can use the following command:
```
docker-compose down -v --rmi all
docker compose down -v --rmi all
```