Update README.md

This commit is contained in:
2026-02-06 09:58:22 +03:00
parent 01da7559ba
commit c377acd0d6

View File

@@ -82,7 +82,7 @@ mkdir -p data
### Build and Start ### Build and Start
```bash ```bash
docker-compose up -d --build docker compose up -d --build
``` ```
This will: This will:
@@ -100,13 +100,13 @@ docker-compose logs -f
### Stop the Server ### Stop the Server
```bash ```bash
docker-compose down docker compose down
``` ```
### Stop and Remove All Data ### Stop and Remove All Data
```bash ```bash
docker-compose down -v docker compose down -v
rm -rf data/*.db data/*.db-* rm -rf data/*.db data/*.db-*
``` ```