feat: Initial commit

This commit is contained in:
2025-03-18 22:11:18 -04:00
parent ae1672db51
commit 3f9f597cbb
2 changed files with 35 additions and 0 deletions

35
compose.yaml Normal file
View File

@@ -0,0 +1,35 @@
---
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
volumes:
- homarr_config:/app/data/configs
- homarr_icons:/app/public/icons
networks:
- proxy
ports:
- 7575:7575
labels:
com.centurylinklabs.watchtower.enable: true
networks:
proxy:
external: true
volumes:
homarr_config:
driver_opts:
type: nfs
o: "addr=192.168.10.105,nolock,soft,rw"
device: ":/var/nfs/shared/docker/homarr/config"
labels:
dev.housh.description: "Homarr configuration volume."
homarr_icons:
driver_opts:
type: nfs
o: "addr=192.168.10.105,nolock,soft,rw"
device: ":/var/nfs/shared/docker/homarr/icons"
labels:
dev.housh.description: "Homarr icons volume."