When ws recompile is executed, if the app container is not running it will fail, because it tries to do a docker-exec app go build ....
Instead, when the app container has exited (e.g. because there is a problem in the app code that is causing it to crash), we should do a docker-compose up -d --build app to rebuild it.
When
ws recompile
is executed, if theapp
container is not running it will fail, because it tries to do adocker-exec app go build ...
.Instead, when the app container has exited (e.g. because there is a problem in the app code that is causing it to crash), we should do a
docker-compose up -d --build app
to rebuild it.