You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Live reload was added in #4586, however it does not currently support running in docker.
Running in docker presents a couple of nuances, primarily that the platform module is built as part of the image and that all local files are copied to the image rather than referenced from the host file system.
In order to support live reload, there are a couple of options:
Use docker watch command
Change the approach to image creation and resulting artifact to utilize the host file system instead of copying the files to the image itself
Pros/cons to both approaches.
The text was updated successfully, but these errors were encountered:
Live reload was added in #4586, however it does not currently support running in docker.
Running in docker presents a couple of nuances, primarily that the platform module is built as part of the image and that all local files are copied to the image rather than referenced from the host file system.
In order to support live reload, there are a couple of options:
docker watch
commandPros/cons to both approaches.
The text was updated successfully, but these errors were encountered: