Skip to content

Commit

Permalink
Update Docker Compose commands in page documenting Docker Compose dep…
Browse files Browse the repository at this point in the history
…loyment (#644)
  • Loading branch information
rl1987 authored Dec 12, 2024
1 parent 20405ee commit b782631
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/deployment/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```

0 comments on commit b782631

Please sign in to comment.