-
Hey, For a while I've been trying to set up docker proxy to use Homepage. I've followed the documentation and modified the Here's the server-side error message: If anyone has managed to get it to work with version |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ok so I come back to you for anyone who would make the same mistake as me. I started trying to debug the application when I realized that I had forgotten to define the docker server in the services configuration. - Group A:
- Service A:
href: http://localhost/
description: This is my service
server: my-docker # <<< HERE
container: my-container This server name must match the configuration in the my-docker: # <<< HERE
host: dockerproxy
port: 2375 This is not explicitly described in this documentation: https://gethomepage.dev/v0.7.4/configs/docker/#using-docker-socket-proxy. In any case thanks to the author for Homepage which is really cool! |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
Beta Was this translation helpful? Give feedback.
Ok so I come back to you for anyone who would make the same mistake as me. I started trying to debug the application when I realized that I had forgotten to define the docker server in the services configuration.
This server name must match the configuration in the
docker.yaml
file:This is not explicitly described in this documentation: https://gethomepage.dev/v0.7.4/configs/docker/#using-docker-socket-proxy.
It might be a good idea to add a sentence to specify that t…