Add NextCloud service

This commit is contained in:
2025-12-15 12:00:28 +01:00
commit b2f8d6456c
6 changed files with 268 additions and 0 deletions

21
readme.md Normal file
View File

@@ -0,0 +1,21 @@
# tvcloud
This project is a personal cloud of services:
- NextCloud
# Setup
1. Generate self-signed certificate.
```
openssl genpkey -algorithm RSA -out server.key
openssl req -new -x509 -key server.key -out server.crt -days 365
```
2. Make a `db.env` file. See `db.example.env`.
3. Start the services.
```
docker compose up -d
```