diff --git a/public/svgs/homarr.svg b/public/svgs/homarr.svg new file mode 100644 index 000000000..4d4289604 --- /dev/null +++ b/public/svgs/homarr.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/templates/compose/homarr.yaml b/templates/compose/homarr.yaml new file mode 100644 index 000000000..88087a4ba --- /dev/null +++ b/templates/compose/homarr.yaml @@ -0,0 +1,25 @@ +# documentation: https://homarr.dev +# slogan: Homarr is a self-hosted homepage for your services. +# tags: homarr,self-hosted,homepage +# logo: svgs/homarr.svg +# port: 7575 + +version: "3.8" + +services: + homarr: + image: ghcr.io/ajnart/homarr:latest + container_name: homarr + restart: unless-stopped + environment: + - SERVICE_FQDN_HOMARR_7575 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./homarr/configs:/app/data/configs + - ./homarr/icons:/app/public/icons + - ./homarr/data:/data + healthcheck: + test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:7575"] + interval: 5s + timeout: 20s + retries: 10