Compare commits

..

No commits in common. "eb056980fa94f1a361961e329cda8386ce21d23c" and "6448921ea3d9e8616cd2846629ba3b33fc208a18" have entirely different histories.

3 changed files with 8 additions and 7 deletions

View File

@ -31,6 +31,7 @@ All services are deployed using Docker compose and are run as a non-root user.
* [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
* [static-file-server](https://github.com/halverneus/static-file-server) - static file server
### Software development
* [Gitea](https://github.com/go-gitea/gitea) - git web service
@ -41,7 +42,6 @@ All services are deployed using Docker compose and are run as a non-root user.
* [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
* [static-file-server](https://github.com/halverneus/static-file-server) - static file server
## 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

@ -2,6 +2,7 @@ services:
collabora:
image: collabora/code
container_name: collabora
privileged: true
environment:
- password=${COLLABORA_PASSWORD}
- username=${COLLABORA_USERNAME}

View File

@ -1,12 +1,12 @@
services:
ogt-fs:
homer:
image: halverneus/static-file-server
container_name: ogt-fs
container_name: file-server
networks:
- ogt-fs
- file-server
- proxy
volumes:
- ${DATA_DIR}/ogt-fs:/content/files
- ${DATA_DIR}/file-server:/content/files
environment:
- FOLDER=/content/files
ports:
@ -17,5 +17,5 @@ networks:
proxy:
external:
name: proxy
ogt-fs:
name: ogt-fs
file-server:
name: file-server