feat: add homarr service tamplate and logo

This commit is contained in:
Daniel Alves
2024-10-03 12:58:35 -03:00
parent 436a1d945f
commit aabe27efd1
2 changed files with 36 additions and 0 deletions

View File

@@ -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_HOMEBOX_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