Releases: lime-green/remote-docker-aws
Releases · lime-green/remote-docker-aws
3.0.1 - Bug fixes, python updates
fix bootstrap & pathspec regex, update py versions (#30) * update py versions * maybe it needs quotes * update regex * fix brew install, update unison-gitignore * revert test
3.0.0 - Expose docker daemon over unix socket instead of TCP socket
This release is a breaking change, instead of exposing the docker daemon over port 23755, it uses a unix socket (see #29 for a description on why). It will create the socket at /var/run/remote-docker.sock
and automatically use a dedicated docker-context when creating and starting the instance.
If you've already created an instance then I suggest deleting and creating a new one. If you cannot do that then you can run the following on the remote machine (rd ssh
):
sudo usermod -aG docker ubuntu
# Edit /etc/systemd/system/docker.service to use `-H fd://` instead of the TCP address
# After editing the above file:
sudo systemctl daemon-reload && sudo systemctl restart docker.service
2.4.0 - Fix click error
fix click + pin version + show help docs (#28)
2.3.0 - Python 3.9 compatibility
Fix gcd import (#23) Fixes https://github.com/lime-green/remote-docker-aws/issues/22
2.2.0 - Let boto3 determine region
use region from aws config (#21) Resolves https://github.com/lime-green/remote-docker-aws/issues/20
2.1.3 - Fix systemd config
fix systemd config overwriting
2.1.2 - Increase `somaxconn` to support more services running under docker
bump somaxconn to a more reasonable number (#19)
2.1.1 - Fail tunnel command if remote forwarding fails
exit on ssh tunnel forward (#18)
2.1.0 - Default to t3.medium instead of t2.medium
use t3.medium instead of t2.medium (#15)
2.0.0 - Add termination protection, remove rd update
Added two new commands:
rd enable-termination-protection
rd disable-termination-protection
Termination protection is useful to protect against mistakes like deleting your instance through the AWS GUI, or the command line.
Also removes the rd update
command since it was dangerous and not useful