HomarrH
Homarr7mo ago
8 replies
juxjux

Aidez moi - Can't achieve installing 1.x Homarr Docker Container #homarr

Hello everyone.

I just discovered late that the Homarr homepage went from 0.15 to 1.x a few months ago, and that a migration method was implemented in the application with an encryption key etc.....In short, I took my lead and tried my luck. Docker Compose is small, simple and efficient.....the container launches perfectly in "healthy" mode under Portainer. But now, impossible to access the page! Both through the Reverse Proxy https and on the page http://namenas.synology.me:7578 (dedicated port).

Don't understand what's going on. Any similar feedback from you?

Thanks in advance.

J

----------------------------------

#----------------------------------------------------------------------#

Homarr - A simple, yet powerful dashboard for your server. #

#----------------------------------------------------------------------#
services:
homarr:
container_name: homarr2025
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
- /volume1/docker/homarr1/appdata:/appdata
environment:
- SECRET_ENCRYPTION_KEY=617b32124d952e506223fd170b9a04e91bd93772acb8c243429523cba8d08ef9
- PUID=1026
- PGID=100
ports:
- '7578:7578'


My logs are there.
https://pastebin.com/SLw12aBG
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Solution
As for the actual problem, you are exposing the wrong port. Expose 7575 instead, you can map to 7578 or any other port. So it should be
7578:7575
Was this page helpful?