dbpulse 0.3.0

command line tool to monitor that database is available for read & write
Documentation
1
2
3
4
5
6
7
8
FROM rust:latest
WORKDIR /usr/src/dbpulse
COPY . .
RUN cargo build --release --locked

FROM debian:latest
COPY --from=0 /usr/src/dbpulse/target/release/dbpulse /
CMD ["./dbpulse"]