From bdf14f68e9bd422f0c43827199eed8785da73997 Mon Sep 17 00:00:00 2001 From: Gurulandia Date: Wed, 5 Mar 2025 10:29:42 +0200 Subject: [PATCH] Add Homarr --- docker/homarr/compose.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docker/homarr/compose.yaml diff --git a/docker/homarr/compose.yaml b/docker/homarr/compose.yaml new file mode 100644 index 0000000..d0077f4 --- /dev/null +++ b/docker/homarr/compose.yaml @@ -0,0 +1,22 @@ +#---------------------------------------------------------------------# +# Homarr - A simple, yet powerful dashboard for your server. # +#---------------------------------------------------------------------# +services: + homarr: + container_name: homarr + image: ghcr.io/homarr-labs/homarr:latest + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration + - /gurulandia/data/homarr/appdata:/appdata + environment: + - SECRET_ENCRYPTION_KEY=9a3fb9c060d3ff37ac0e0785177979ec48620144b8fd3e5883c02e27f68b2dba # <--- can be generated with `openssl rand -hex 32` + - DB_DRIVER=mysql2 + - DB_DIALECT=mysql + - DB_HOST=10.0.6.180 + - DB_PORT=3306 + - DB_NAME=homarr + - DB_USER=homarr + - DB_PASSWORD=homarr + ports: + - 7575:7575 \ No newline at end of file