mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
21 lines
422 B
Markdown
21 lines
422 B
Markdown
# Build
|
|
|
|
To build `ctop` from source, ensure you have [dep](https://github.com/golang/dep) installed and run:
|
|
|
|
```bash
|
|
go get github.com/bcicen/ctop && \
|
|
cd $GOPATH/src/github.com/bcicen/ctop && \
|
|
make build
|
|
```
|
|
|
|
To build a minimal Docker image containing only `ctop`:
|
|
```bash
|
|
make image
|
|
```
|
|
|
|
Now you can run your local image:
|
|
|
|
```bash
|
|
docker run -ti --name ctop --rm -v /var/run/docker.sock:/var/run/docker.sock ctop
|
|
```
|