23 lines
238 B
Markdown
23 lines
238 B
Markdown
|
# cic-internal-integration
|
||
|
|
||
|
## Getting started
|
||
|
|
||
|
start cluster
|
||
|
```
|
||
|
docker-compose up
|
||
|
```
|
||
|
|
||
|
stop cluster
|
||
|
```
|
||
|
docker-compose down
|
||
|
```
|
||
|
|
||
|
delete data
|
||
|
```
|
||
|
docker-compose down -v
|
||
|
```
|
||
|
|
||
|
rebuild all the images
|
||
|
```
|
||
|
docker-compose build --no-cache
|
||
|
```
|