Automation with Public EC2 in default VPC
Some Automation, Provisioning Utility Tools can't support Windows.
So you need to Linux-like OS or VMWare, Docker etc on.
In this project I use docker to run tools.
- Build, Start
# docker build --build-arg TARGET_VALUE=<Public 아이피> -t automation-store .
docker build -t automation-store .
docker run -t -i automation-store
- Clean up
# Stop all containers
docker stop $(docker ps -a -q)
# Remove all containers
docker rm $(docker ps -a -q)
# Remove all images
docker rmi $(docker images -q)