feature/allthestuff #4

Merged
nerdlicht merged 3 commits from feature/allthestuff into main 2025-04-24 15:38:04 +02:00
4 changed files with 52 additions and 7 deletions
Showing only changes of commit 266f32b917 - Show all commits

View File

@@ -1,3 +1,48 @@
# docker-container
Docker Container
Docker Container
## available containers:
* [git](https://git.home.domroese.eu)
* git server
* [guac](https://guac.home.domroese.eu)
* guacamole, ssh and remotedesktop sessions
* [rss](https://rss.home.domroese.eu)
* rss reader
* [morphos](https://morphos.home.domroese.eu)
* Image and Video converter
* [uptimekuma](https://uptimekuma.home.domroese.eu)
* monitoring
* [kopia](https://kopia.home.domroese.eu)
* backup tools
* [jenkins](https://jenkins.home.domroese.eu)
* [pihole](https://pihole.home.domroese.eu)
* [paperless](https://paperless.home.domroese.eu)
* DMS
* [ittools](https://ittools.home.domroese.eu)
* just tools
* [omnitools](https://omnitools.home.domroese.eu)
* also just tools
* [vault](https://vault.home.domroese.eu)
* key vault
* [chat](https://chat.home.domroese.eu)
* LMMs
* [budibase](https://budibase.home.domroese.eu)
* No-Code coding
* [erugo](https://erugo.home.domroese.eu)
* Filesharing
* [excalidraw](https://excalidraw.home.domroese.eu)
*
* [homarr](https://homarr.home.domroese.eu)
* monitoring
* [homepage](https://homepage.home.domroese.eu)
* Homepage
* [mealie](https://mealie.home.domroese.eu)
* Reciepes
* [shiori](https://shiori.home.domroese.eu)
* Bookmarks
* [wallos](https://wallos.home.domroese.eu)
* Finance, tracking of Subscriptions
* [nas](https://nas.home.domroese.eu)

View File

@@ -105,11 +105,6 @@ wallos.home.domroese.eu:443 {
reverse_proxy 192.168.1.65:8282
}
nas.home.domroese.eu {
tls soenke@domroese.eu {
client_auth {

5
restartall.sh Normal file
View File

@@ -0,0 +1,5 @@
for dir in *; do
if [ -d "$dir" ]; then
( cd "$dir" && docker compose down && docker compose pull && docker compose up -d )
fi
done

View File

@@ -1,5 +1,5 @@
for dir in *; do
if [ -d "$dir" ]; then # or: if test -d "$dir"; then
if [ -d "$dir" ]; then
( cd "$dir" && docker-compose up -d )
fi
done