From 81fa3f2da948db69adf95dd5fb3f7bd16a868d6d Mon Sep 17 00:00:00 2001 From: oliver Date: Fri, 28 Mar 2025 11:15:57 +0100 Subject: [PATCH] =?UTF-8?q?Dateien=20nach=20=E2=80=9E/=E2=80=9C=20hochlade?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- get_ids | 1 + install_adguard_home | 7 +++++++ install_ghost | 6 ++++++ install_heimdall | 9 +++++++++ install_home_assistant | 11 +++++++++++ 5 files changed, 34 insertions(+) create mode 100644 get_ids create mode 100644 install_adguard_home create mode 100644 install_ghost create mode 100644 install_heimdall create mode 100644 install_home_assistant diff --git a/get_ids b/get_ids new file mode 100644 index 0000000..074d1ee --- /dev/null +++ b/get_ids @@ -0,0 +1 @@ +id diff --git a/install_adguard_home b/install_adguard_home new file mode 100644 index 0000000..80a07ae --- /dev/null +++ b/install_adguard_home @@ -0,0 +1,7 @@ +docker run -d --name=adguard \ +-e TZ=Europe/Berlin \ + -v /volume1/docker/adguardhome/conf:/opt/adguardhome/conf \ +-v /volume1/docker/adguardhome/work:/opt/adguardhome/work \ +--net=host \ +--restart always \ +adguard/adguardhome diff --git a/install_ghost b/install_ghost new file mode 100644 index 0000000..f111c63 --- /dev/null +++ b/install_ghost @@ -0,0 +1,6 @@ +docker run -d --name=ghost \ +-p 2368:2368 \ +-e url=https://yourblog.com \ +-v /volume1/docker/ghost:/var/lib/ghost/content \ +--restart always \ +ghost diff --git a/install_heimdall b/install_heimdall new file mode 100644 index 0000000..f4d5eaa --- /dev/null +++ b/install_heimdall @@ -0,0 +1,9 @@ +docker run -d --name=heimdall \ +-p 8056:80 \ +-p 7543:443 \ +-e PUID=1000 \ +-e PGID=100 \ +-e TZ=Europe/Berlin \ +-v /volume1/docker/heimdall:/config \ +--restart always \ +lscr.io/linuxserver/heimdall:latest diff --git a/install_home_assistant b/install_home_assistant new file mode 100644 index 0000000..9d9b449 --- /dev/null +++ b/install_home_assistant @@ -0,0 +1,11 @@ +docker run -d --name=hassio_supervisor \ +-v /var/run/docker.sock:/var/run/docker.sock \ +-v /var/run/dbus:/var/run/dbus \ +-v /volume1/docker/homeassistant:/data \ +-e SUPERVISOR_SHARE=/volume1/docker/homeassistant \ +-e SUPERVISOR_NAME=hassio_supervisor \ +-e HOMEASSISTANT_REPOSITORY=homeassistant/qemux86-64-homeassistant \ +--security-opt seccomp=unconfined \ +--privileged \ +--restart always \ +homeassistant/amd64-hassio-supervisor