From ce0b2a4fc5e851566a414edbdf9ac2056b4eb947 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sat, 15 Mar 2025 10:37:28 -0400 Subject: [PATCH] feat: Adds homarr --- homarr/README.md | 4 ++++ homarr/compose.yml | 17 +++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 homarr/README.md create mode 100644 homarr/compose.yml diff --git a/homarr/README.md b/homarr/README.md new file mode 100644 index 0000000..f657bae --- /dev/null +++ b/homarr/README.md @@ -0,0 +1,4 @@ +# Homarr + +[Homarr](https://homarr.dev) is a dashboard for services / links to services and +websites that I commonly use. diff --git a/homarr/compose.yml b/homarr/compose.yml new file mode 100644 index 0000000..2c6dcdf --- /dev/null +++ b/homarr/compose.yml @@ -0,0 +1,17 @@ +networks: + proxy: + external: true + +services: + homarr: + container_name: homarr + image: ghcr.io/ajnart/homarr:latest + volumes: + - ./config:/app/data/configs + - ./icons:/app/public/icons + networks: + - proxy + ports: + - 7575:7575 + labels: + com.centurylinklabs.watchtower.enable: true