From b2bcff4933b8b027b4c083ca9e21c5e700895117 Mon Sep 17 00:00:00 2001 From: Jadowyne Ulve Date: Sun, 27 Apr 2025 09:21:52 -0500 Subject: [PATCH] Add homarr/docker-compose.yml --- homarr/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 homarr/docker-compose.yml diff --git a/homarr/docker-compose.yml b/homarr/docker-compose.yml new file mode 100644 index 0000000..071a009 --- /dev/null +++ b/homarr/docker-compose.yml @@ -0,0 +1,15 @@ +#---------------------------------------------------------------------# +# 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 + - ./homarr/appdata:/appdata + environment: + - SECRET_ENCRYPTION_KEY=426fe2ad42f35c79f6c2efc2d91132632e2624c0f7b77545e456f127c2bf5963 + ports: + - '7575:7575' \ No newline at end of file