We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add the option to use local docker to speed up (for now always deploys to the cloud)
Update the command line to automatically remove and rebuild docker when sst run
See
https://docs.docker.com/get-started/03_updating_app/ https://stackoverflow.com/questions/32073971/stopping-docker-containers-by-image-name-ubuntu
docker build -t crispy-pancake . docker run -dp 127.0.0.1:8080:8080 crispy-pancake
docker rm $(docker stop $(docker ps -a -q --filter ancestor=crispy-pancake)) docker build -t crispy-pancake . docker run -dp 127.0.0.1:8080:8080 crispy-pancake
docker rm $(docker stop $(docker ps -a -q --filter ancestor=crispy-pancake))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the option to use local docker to speed up (for now always deploys to the cloud)
Update the command line to automatically remove and rebuild docker when sst run
See
https://docs.docker.com/get-started/03_updating_app/
https://stackoverflow.com/questions/32073971/stopping-docker-containers-by-image-name-ubuntu
Start
docker build -t crispy-pancake . docker run -dp 127.0.0.1:8080:8080 crispy-pancake
Update
Stop
docker rm $(docker stop $(docker ps -a -q --filter ancestor=crispy-pancake))
The text was updated successfully, but these errors were encountered: