Homarr installed via docker compose but not showing other docker containers via docker intergration
As above!
11 Replies
Did you mount your docker.sock?
100% haven't done that...
How? 😄
Integrations | Homarr Docs
Homarr will integrate with a ton of different apps on your system.
-v /var/run/docker.sock:/var/run/docker.sock
Where do i run that? Do i put it in the compose?
Yes
Ok, just as a fresh line?
Just under the other lines that also start with -v
ajnart:
container_name: homarr
ports:
- '7575:7575'
volumes:
- '/volume1/docker/homarr:/app/data/configs'
restart: unless-stopped
image: 'ghcr.io/ajnart/homarr:latest'
thats all i have for homarr
Since you are on docker compose, the line would go under volumes
bare with me caller
ajnart:
container_name: homarr
ports:
- '7575:7575'
volumes:
- '/volume1/docker/homarr:/app/data/configs'
- ./var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
image: 'ghcr.io/ajnart/homarr:latest'
just run that and got an error saying it doesnt exist
took the . out and im all good, thanks so much!
Ah, my bad on that, glad you figured it out