📝 Docker Compose recommendation, 📝 typo fix

This commit is contained in:
itskovacs 2025-07-30 08:51:30 +02:00
parent fe08fa3a2f
commit e5d890db21
2 changed files with 17 additions and 2 deletions

View File

@ -42,6 +42,20 @@ Demo is worth a thousand words, head to 📸 [Demo](#Demo).
If you need help, feel free to open an [issue](https://github.com/itskovacs/trip/issues).
Deployment is designed to be simple using Docker.
### Option 1: Docker Compose (Recommended)
Use the `docker-compose.yml` file provided in this repository. No changes are required, though you may customize it to suit your needs.
Run the container:
```bash
docker-compose up -d
```
### Option 2: Docker Run
```bash
# Ensure you have the latest image
docker pull ghcr.io/itskovacs/trip:1
@ -50,12 +64,13 @@ docker pull ghcr.io/itskovacs/trip:1
docker run -d -p 8080:8000 -v ./storage:/app/storage ghcr.io/itskovacs/trip:1
```
### Configuration
Refer to the [configuration documentation](https://github.com/itskovacs/trip/tree/main/docs/config.md) to set up OIDC authentication and other settings.
> [!TIP]
> See [Usage Tips](https://github.com/itskovacs/trip/tree/main/docs/usage_tips.md) in docs for advanced features.
<br>
## 📸 Demo <a name = "demo"></a>

View File

@ -1,4 +1,4 @@
TRIP uses SQLite databases to store the data.
TRIP uses a SQLite database to store the data.
To back up your data, follow these simple steps:
1. **Stop the container**