-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I get hot reloading work in docker? 🤗 #102
Comments
Thanks for opening your first issue here! 🎉 Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord |
@hcancelik I think the problem is you are mounting the wrong directory inside the container. you are mounting so try to change the docker file line volumes:
- ./api:/app to volumes:
- ./api:/go/src/api both solutions should work, if it still not working please tell me. |
Thanks for the reply @MohabMohamed. They are indeed wrong, so I've corrected them. However, the hot reload is still not working. |
I've had this issue today with an Ubuntu 22.04 machine, while the hot reloading works fine on a mac. I'm pretty certain what this comes down to is the fact that file system events on the Ubuntu host machine don't get propagated into the container - if we go inside the container and modify the files from within then the hot reloading works, but if we modify it from the host machine it doesn't. If the host machine is MacOS then changes on the host machine do trigger the hot reload as This is an issue for non-mac users wanting to containerise their development environments face with various different development tools that provide hot reloading, and the typical solution is to provide a legacy watch option which periodically checks for changes instead of relying upon file system events. This CLI tool doesn't have one, though. Feature request maybe? In the meantime I'm going to experiment with using air instead, which has been suggested in this comment in an issue on the gofiber/fiber repo regarding hot reload support. |
Update: air also doesn't have a legacy watch option, so neither air or the fiber cli work in my use case. |
Question description
I'm having trouble getting the hot reloading working with
fiber dev
inside a docker container.Here is my Dockerfile.
Here is my docker-compose file.
I do see the files being changed inside the container but I cannot get the fiber cli to restart the fiber. What I might be missing?
Thanks.
The text was updated successfully, but these errors were encountered: