Update README
This commit is contained in:
parent
07e844d0f6
commit
624f26fbf5
1 changed files with 35 additions and 0 deletions
35
README.md
35
README.md
|
@ -0,0 +1,35 @@
|
||||||
|
# Simple compose runner
|
||||||
|
|
||||||
|
A simple docker compose runner in Go.
|
||||||
|
|
||||||
|
### Building
|
||||||
|
|
||||||
|
```
|
||||||
|
go build
|
||||||
|
```
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
Run a compose in current directory
|
||||||
|
|
||||||
|
```
|
||||||
|
./compose-runner
|
||||||
|
```
|
||||||
|
|
||||||
|
Run a compose in current directory, verbose output
|
||||||
|
|
||||||
|
```
|
||||||
|
./compose-runner -v
|
||||||
|
```
|
||||||
|
|
||||||
|
Run a compose at specified location
|
||||||
|
|
||||||
|
```
|
||||||
|
./compose-runner /path/to/repo
|
||||||
|
```
|
||||||
|
|
||||||
|
Run a compose at specified location, verbose output
|
||||||
|
|
||||||
|
```
|
||||||
|
./compose-runner -v /path/to/repo
|
||||||
|
```
|
Loading…
Reference in a new issue