remove glances doesnt work

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-10-06 18:02:55 -07:00
parent a68d983fba
commit ed1a50761e
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 0 additions and 60 deletions

View File

@ -1,30 +0,0 @@
# Run glances in a container
# https://github.com/nicolargo/glances
#
# docker run --rm -it \
# --pid host \
# --ipc host \
# --net host \
# --name glances \
# jess/glances
FROM alpine:latest
ENV GLANCES_VERSION 2.4.2
RUN apk update && apk add \
ca-certificates \
curl \
gcc \
python \
py-pip \
&& rm -rf /var/cache/apk/*
RUN curl -L "https://github.com/nicolargo/glances/archive/v${GLANCES_VERSION}.tar.gz" -o /tmp/glances.tar.gz \
&& mkdir -p /usr/src/glances \
&& tar -xzf /tmp/glances.tar.gz -C /usr/src/glances \
&& rm /tmp/glances.tar.gz* \
&& cd /usr/src/glances/glances-${GLANCES_VERSION} \
&& python setup.py install \
&& rm -rf /usr/src/glances
ENTRYPOINT [ "glances" ]

View File

@ -1,30 +0,0 @@
Glances - An eye on your system
================================
[Glances](https://github.com/nicolargo/glances) is a cross-platform
curses-based system monitoring tool written in Python.
### Run in a container
For the standalone mode, just run:
```
$ docker run --rm -it --pid=host --ipc=host --net=host --privileged infoslack/glances
```
### Using
For the Web server mode, run:
```
$ glances -w
```
and enter the URL `http://<ip>:61208` in your favorite web browser.
For the client/server mode, run:
```
$ glances -s
```
on the server side and run:
```
$ glances -c <ip>
```
on the client one.