Intial repository commit

This commit is contained in:
2025-11-25 14:15:40 -05:00
commit 44c853f580
67 changed files with 34583 additions and 0 deletions

1
homarr/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

2
homarr/README.md Normal file
View File

@@ -0,0 +1,2 @@
# Homarr Info
# Testing only right now

18
homarr/docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- ./appdata:/appdata
environment:
- SECRET_ENCRYPTION_KEY=${SECRET_ENCRYPTION_KEY}
ports:
- '7575:7575'
networks:
- 'homelab'
networks:
homelab:
external: true