├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md └── ebs-attach.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | test.sh 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leg100/docker-ebs-attach/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leg100/docker-ebs-attach/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leg100/docker-ebs-attach/HEAD/README.md -------------------------------------------------------------------------------- /ebs-attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leg100/docker-ebs-attach/HEAD/ebs-attach.py --------------------------------------------------------------------------------