Files
tvcloud/readme.md

35 lines
835 B
Markdown

# tvcloud
This project is a personal cloud of services:
- NextCloud
- OpenProject
# Setup
1. Generate a 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 `nextcloud-db.env` file. See `nextcloud-db.example.env`.
3. Start the services.
```
docker compose up -d
```
# Update/install Joplin
```
wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash
```
You can then [synchronize it with NextCloud](https://joplinapp.org/help/apps/sync/nextcloud/).
# Update/backup OpenProject
[https://www.openproject.org/docs/installation-and-operations/installation/docker-compose/#upgrade](https://www.openproject.org/docs/installation-and-operations/installation/docker-compose/#upgrade)