mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-21 16:22:03 +03:00
26 lines
586 B
Docker
26 lines
586 B
Docker
#
|
|
# Glances Dockerfile (based on Ubuntu)
|
|
#
|
|
# https://github.com/nicolargo/glances
|
|
#
|
|
|
|
# Pull base image.
|
|
FROM ubuntu
|
|
|
|
# Install Glances (develop branch)
|
|
RUN apt-get update && apt-get -y install curl && rm -rf /var/lib/apt/lists/*
|
|
RUN curl -L https://raw.githubusercontent.com/nicolargo/glancesautoinstall/master/install.sh | /bin/bash && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
# Define working directory.
|
|
WORKDIR /glances
|
|
|
|
# EXPOSE PORT (For XMLRPC)
|
|
EXPOSE 61209
|
|
|
|
# EXPOSE PORT (For Web UI)
|
|
EXPOSE 61208
|
|
|
|
# Define default command.
|
|
CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT
|