mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 08:15:34 +01:00
Rename file-server
This commit is contained in:
parent
4e2eee792a
commit
eb056980fa
@ -31,7 +31,6 @@ All services are deployed using Docker compose and are run as a non-root user.
|
|||||||
* [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
|
* [Collabora](https://github.com/CollaboraOnline/online) - office suite
|
||||||
* [static-file-server](https://github.com/halverneus/static-file-server) - static file server
|
|
||||||
|
|
||||||
### Software development
|
### Software development
|
||||||
* [Gitea](https://github.com/go-gitea/gitea) - git web service
|
* [Gitea](https://github.com/go-gitea/gitea) - git web service
|
||||||
@ -42,6 +41,7 @@ All services are deployed using Docker compose and are run as a non-root user.
|
|||||||
* [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
|
* [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
|
## 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.
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
services:
|
services:
|
||||||
homer:
|
ogt-fs:
|
||||||
image: halverneus/static-file-server
|
image: halverneus/static-file-server
|
||||||
container_name: file-server
|
container_name: ogt-fs
|
||||||
networks:
|
networks:
|
||||||
- file-server
|
- ogt-fs
|
||||||
- proxy
|
- proxy
|
||||||
volumes:
|
volumes:
|
||||||
- ${DATA_DIR}/file-server:/content/files
|
- ${DATA_DIR}/ogt-fs:/content/files
|
||||||
environment:
|
environment:
|
||||||
- FOLDER=/content/files
|
- FOLDER=/content/files
|
||||||
ports:
|
ports:
|
||||||
@ -17,5 +17,5 @@ networks:
|
|||||||
proxy:
|
proxy:
|
||||||
external:
|
external:
|
||||||
name: proxy
|
name: proxy
|
||||||
file-server:
|
ogt-fs:
|
||||||
name: file-server
|
name: ogt-fs
|
Loading…
Reference in New Issue
Block a user