Skip to content

Commit

Permalink
Update : README.md for docker #1
Browse files Browse the repository at this point in the history
  • Loading branch information
unchaptered committed Jul 27, 2023
1 parent e26227b commit 363d8dd
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Secrets
keys/*
key/*
!keys/README.md
!keys/README.md


# BACKUPS
backup*
33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,32 @@
# automation-store
# automation-store

- Ping

## Docker

Some Automation, Provisioning Utility Tools can't support Windows. <br>
So you need to Linux-like OS or VMWare, Docker etc on. <br>
In this project I use docker to run tools.

### Commands

1. Build, Start

```bash
# docker build --build-arg TARGET_VALUE=<Public 아이피> -t automation-store .
docker build -t automation-store .
docker run --env-file .docker.env -t -i automation-store
```

2. Clean up

```bash
# 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)
```

0 comments on commit 363d8dd

Please sign in to comment.