Add blog and collabora

This commit is contained in:
mr-vercetti 2023-05-13 21:31:33 +02:00
parent 3823fe7a85
commit fcf1d00dd8
4 changed files with 42 additions and 0 deletions

BIN
.misc/dashboard.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

View File

@ -1,4 +1,6 @@
# mr-vercetti/homeserver
![Dashboard](.misc/dashboard.jpg)
This is my home server project that I started because I value the privacy of my data, I don't like paying subscriptions and because self-hosting is really fucking cool.
## Services
@ -23,6 +25,7 @@ All services are deployed using Docker compose and are run as a non-root user.
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
* [Redis](https://github.com/docker-library/redis) - cache service
* [MariaDB](https://github.com/linuxserver/docker-mariadb) - database
* [Collabora](https://github.com/CollaboraOnline/online) - office suite
### Software development
* [Gitea](https://github.com/go-gitea/gitea) - git web service
@ -32,6 +35,7 @@ All services are deployed using Docker compose and are run as a non-root user.
* [Bitwarden](https://github.com/dani-garcia/vaultwarden) - the best password manager
* [Wireguard](https://github.com/linuxserver/docker-wireguard) - VPN server
* [Homer](https://github.com/bastienwirtz/homer) - simple dashboard to keep services on hand
* [mr.vercetti.cc](https://git.vercetti.cc/mr-vercetti/mr.vercetti.cc) - my personal blog
## Storage solution
I went with [MergerFS](https://github.com/trapexit/mergerfs) and [SnapRAID](https://github.com/amadvance/snapraid), which allows me a great deal of flexibility and still keeps my data safe. Array is synchronized and scrubbed automatically via [snapraid-runner](https://github.com/Chronial/snapraid-runner) running from crontab.

View File

@ -0,0 +1,23 @@
services:
collabora:
image: collabora/code
container_name: collabora
privileged: true
environment:
- password=${COLLABORA_PASSWORD}
- username=${COLLABORA_USERNAME}
- aliasgroup1=${COLLABORA_DOMAIN}
- extra_params=--o:ssl.enable=true
networks:
- proxy
- collabora
ports:
- "9980:9980"
restart: on-failure
networks:
proxy:
external:
name: proxy
collabora:
name: collabora

View File

@ -0,0 +1,15 @@
services:
mrvercetticc:
image: mrvercetti/mrvercetticc
container_name: mrvercetticc
networks:
- mrvercetticc
- proxy
restart: unless-stopped
networks:
proxy:
external:
name: proxy
mrvercetticc:
name: mrvercetticc