Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 660 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 660 Bytes

automation-store

Automation with Public EC2 in default VPC

Docker

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.

Commands

  1. Build, Start
# docker build --build-arg TARGET_VALUE=<Public 아이피> -t automation-store .
docker build -t automation-store .
docker run -t -i automation-store
  1. 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)