ItsGoin v0.3.2 — Decentralized social media network
No central server, user-owned data, reverse-chronological feed. Rust core + Tauri desktop + Android app + plain HTML/CSS/JS frontend. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
800388cda4
146 changed files with 53227 additions and 0 deletions
13
deploy/Dockerfile
Normal file
13
deploy/Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM rust:1-bookworm AS builder
|
||||
WORKDIR /build
|
||||
COPY Cargo.toml Cargo.lock ./
|
||||
COPY crates/ crates/
|
||||
COPY frontend/ frontend/
|
||||
RUN cargo build --release -p itsgoin-cli
|
||||
|
||||
FROM debian:bookworm-slim
|
||||
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
|
||||
COPY --from=builder /build/target/release/itsgoin /usr/local/bin/itsgoin
|
||||
EXPOSE 4433/udp
|
||||
VOLUME /data
|
||||
ENTRYPOINT ["itsgoin", "/data", "--bind", "0.0.0.0:4433", "--daemon"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue