MajorMarcin
MajorMarcin
HHomarr
Created by Redgunner on 11/21/2023 in #💬・get-help
Unable to connect
however, I don't know if it has any impact during installation because hommar was not the first service that I added to the environment
8 replies
HHomarr
Created by Redgunner on 11/21/2023 in #💬・get-help
Unable to connect
🤔 Container details PORT CONFIGURATION should be something like
0.0.0.0:7575 7575/tcp
:::7575 7575/tcp
0.0.0.0:7575 7575/tcp
:::7575 7575/tcp
but if its new portainer environment you can check Public IP in Environment details (otherwise the port will point to the IP address 0.0.0.0 anyway)
8 replies
HHomarr
Created by Redgunner on 11/21/2023 in #💬・get-help
Unable to connect
regarding the port, check if the container has added a network
8 replies
HHomarr
Created by Redgunner on 11/21/2023 in #💬・get-help
Unable to connect
No description
8 replies
HHomarr
Created by Redgunner on 11/21/2023 in #💬・get-help
Unable to connect
here you have my Stack example
version: '3'
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- configs:/app/data/configs
- icons:/app/public/icons
- data:/data
ports:
- '7575:7575'
volumes:
configs:
icons:
data:
version: '3'
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- configs:/app/data/configs
- icons:/app/public/icons
- data:/data
ports:
- '7575:7575'
volumes:
configs:
icons:
data:
8 replies