TheSimplier
TheSimplier
HHomarr
Created by TheSimplier on 2/17/2025 in #💬・get-help
High disk usage
Alright, good to see the issue is flagged already :) Thank you!
9 replies
HHomarr
Created by TheSimplier on 2/17/2025 in #💬・get-help
High disk usage
The log stopped after fixing the integrations. It went from about 100MB / minute to nothing. Seems excessive to log this much... ?
9 replies
HHomarr
Created by TheSimplier on 2/17/2025 in #💬・get-help
High disk usage
After some further investigation it seems the issue is because of the docker log file, and the bad endpoint for my integrations. Homarr seems to spit out the logs as fast as it possibly can when trying to reconnect to an integration.. I will try to fix the issues with my integrations and see if the log stops.
9 replies
HHomarr
Created by TheSimplier on 2/17/2025 in #💬・get-help
High disk usage
Here's my docker compose:
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
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
- ./homarr/appdata:/appdata
environment:
- SECRET_ENCRYPTION_KEY=xxx # <--- can be generated with `openssl rand -hex 32`
labels:
- "traefik.enable=true"
- "traefik.http.routers.homarr.rule=Host(`homarr.local.example.com`)" # I have an actual domain here
- "traefik.http.routers.homarr.entrypoints=https"
- "traefik.http.routers.homarr.middlewares=authelia@docker"
- "traefik.http.routers.homarr.tls=true"
- "traefik.http.services.homarr.loadBalancer.server.port=7575"
networks:
- proxy
# ports:
# - '7575:7575'

networks:
proxy:
external: true


#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
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
- ./homarr/appdata:/appdata
environment:
- SECRET_ENCRYPTION_KEY=xxx # <--- can be generated with `openssl rand -hex 32`
labels:
- "traefik.enable=true"
- "traefik.http.routers.homarr.rule=Host(`homarr.local.example.com`)" # I have an actual domain here
- "traefik.http.routers.homarr.entrypoints=https"
- "traefik.http.routers.homarr.middlewares=authelia@docker"
- "traefik.http.routers.homarr.tls=true"
- "traefik.http.services.homarr.loadBalancer.server.port=7575"
networks:
- proxy
# ports:
# - '7575:7575'

networks:
proxy:
external: true


9 replies