Skip to content

Commit aabe27e

Browse files
committed
feat: add homarr service tamplate and logo
1 parent 436a1d9 commit aabe27e

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

public/svgs/homarr.svg

Lines changed: 11 additions & 0 deletions
Loading

templates/compose/homarr.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# documentation: https://homarr.dev
2+
# slogan: Homarr is a self-hosted homepage for your services.
3+
# tags: homarr,self-hosted,homepage
4+
# logo: svgs/homarr.svg
5+
# port: 7575
6+
7+
version: "3.8"
8+
9+
services:
10+
homarr:
11+
image: ghcr.io/ajnart/homarr:latest
12+
container_name: homarr
13+
restart: unless-stopped
14+
environment:
15+
- SERVICE_FQDN_HOMEBOX_7575
16+
volumes:
17+
- /var/run/docker.sock:/var/run/docker.sock
18+
- ./homarr/configs:/app/data/configs
19+
- ./homarr/icons:/app/public/icons
20+
- ./homarr/data:/data
21+
healthcheck:
22+
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:7575"]
23+
interval: 5s
24+
timeout: 20s
25+
retries: 10

0 commit comments

Comments
 (0)