Compare commits

...

4 Commits

Author SHA1 Message Date
Sönke Domröse
e20873ef4e budibase port in caddy 2025-04-24 16:17:28 +02:00
Sönke Domröse
1a72a7c0ff Merge remote-tracking branch 'origin/main' into feature/allthestuff
# Conflicts:
#	caddy/Caddyfile
#	startall.sh
2025-04-24 15:37:10 +02:00
Sönke Domröse
266f32b917 readme + restart script 2025-04-24 15:34:57 +02:00
ff43d335ac Add all the containers (#3)
Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de>
Reviewed-on: https://git.home.domroese.eu/nerdlicht/docker-container/pulls/3
2025-04-24 14:56:36 +02:00
4 changed files with 53 additions and 8 deletions

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

@@ -62,7 +62,7 @@ chat.home.domroese.eu:443 {
}
budibase.home.domroese.eu:443 {
tls soenke@domroese.eu
reverse_proxy 192.168.1.65:4002
reverse_proxy 192.168.1.65:10000
}
erugo.home.domroese.eu:443 {
@@ -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