Skip to content

Releases: lime-green/remote-docker-aws

3.0.1 - Bug fixes, python updates

01 Jan 17:08
0e3ac6f
Compare
Choose a tag to compare
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

07 Aug 17:33
bcbd8b7
Compare
Choose a tag to compare

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

07 Aug 00:39
d82e4bd
Compare
Choose a tag to compare
fix click + pin version + show help docs (#28)

2.3.0 - Python 3.9 compatibility

31 Jan 21:57
0277a50
Compare
Choose a tag to compare
Fix gcd import (#23)

Fixes https://github.com/lime-green/remote-docker-aws/issues/22

2.2.0 - Let boto3 determine region

31 Dec 21:20
8c4be03
Compare
Choose a tag to compare
use region from aws config (#21)

Resolves https://github.com/lime-green/remote-docker-aws/issues/20

2.1.3 - Fix systemd config

19 Oct 16:02
Compare
Choose a tag to compare
fix systemd config overwriting

2.1.2 - Increase `somaxconn` to support more services running under docker

09 Sep 21:18
207f85f
Compare
Choose a tag to compare
bump somaxconn to a more reasonable number (#19)

2.1.1 - Fail tunnel command if remote forwarding fails

09 Sep 17:46
d1aed39
Compare
Choose a tag to compare

2.1.0 - Default to t3.medium instead of t2.medium

24 Aug 22:58
072ac0f
Compare
Choose a tag to compare
use t3.medium instead of t2.medium (#15)

2.0.0 - Add termination protection, remove rd update

18 Aug 01:24
d0102a4
Compare
Choose a tag to compare

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