mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 16:25:35 +01:00
Add blog and collabora
This commit is contained in:
parent
3823fe7a85
commit
fcf1d00dd8
BIN
.misc/dashboard.jpg
Normal file
BIN
.misc/dashboard.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 121 KiB |
@ -1,4 +1,6 @@
|
|||||||
# mr-vercetti/homeserver
|
# 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.
|
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
|
## 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
|
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
||||||
* [Redis](https://github.com/docker-library/redis) - cache service
|
* [Redis](https://github.com/docker-library/redis) - cache service
|
||||||
* [MariaDB](https://github.com/linuxserver/docker-mariadb) - database
|
* [MariaDB](https://github.com/linuxserver/docker-mariadb) - database
|
||||||
|
* [Collabora](https://github.com/CollaboraOnline/online) - office suite
|
||||||
|
|
||||||
### Software development
|
### Software development
|
||||||
* [Gitea](https://github.com/go-gitea/gitea) - git web service
|
* [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
|
* [Bitwarden](https://github.com/dani-garcia/vaultwarden) - the best password manager
|
||||||
* [Wireguard](https://github.com/linuxserver/docker-wireguard) - VPN server
|
* [Wireguard](https://github.com/linuxserver/docker-wireguard) - VPN server
|
||||||
* [Homer](https://github.com/bastienwirtz/homer) - simple dashboard to keep services on hand
|
* [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
|
## 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.
|
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.
|
||||||
|
23
docker/stacks/collabora/collabora.yml
Normal file
23
docker/stacks/collabora/collabora.yml
Normal 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
|
15
docker/stacks/mrvercetticc/mrvercetticc.yml
Normal file
15
docker/stacks/mrvercetticc/mrvercetticc.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user