-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Watch action: restart #11062
Comments
I would also like this feature, but I think just For this reason I use But What to do? – Use |
Restart could be enough combined with a bind mount though right? |
@Korijn in my paradigm for using Why?: The |
Ah okay. We only use compose in local development and testing scenarios. |
Wow, quick! Nice work! Thanks. |
Description
Right now I believe the
docker compose watch
command supports two action types,rebuild
andsync
. I'd like to see one more option:restart
.There are application binaries (in my case it's the python framework
celery
) which don't support hot reloading when source code files change. Sosync
is not enough to pick up the changed source code, andrebuild
is overkill because the dependencies did not change.All I need is a quick
restart
!The text was updated successfully, but these errors were encountered: