gundb 0.2.1

Distributed graph database that syncs over websockets and multicast
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:latest

WORKDIR /usr/src/gun-rs

COPY Cargo.toml .
COPY Cargo.lock .
COPY assets assets
COPY src src

RUN cargo build --release

CMD ["./target/release/gundb", "start"]