vigil-server 1.5.0

Microservices Status Page. Monitors a distributed infrastructure and sends alerts to Slack.
1
2
3
4
5
6
7
8
9
10
11
FROM rustlang/rust:nightly

WORKDIR /usr/src/vigil
COPY ./res/assets/ ./res/assets/

RUN apt-get update
RUN apt-get install -y libstrophe-dev
RUN cargo install vigil-server --all-features
CMD [ "vigil", "-c", "/etc/vigil.cfg" ]

EXPOSE 8080