diff --git a/glances/Dockerfile b/glances/Dockerfile deleted file mode 100644 index 0236556..0000000 --- a/glances/Dockerfile +++ /dev/null @@ -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" ] diff --git a/glances/README.md b/glances/README.md deleted file mode 100644 index b98793e..0000000 --- a/glances/README.md +++ /dev/null @@ -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://:61208` in your favorite web browser. - -For the client/server mode, run: -``` -$ glances -s -``` -on the server side and run: -``` -$ glances -c -``` -on the client one.