feat(web): add dockerized web UI with comic library browser

Adds a `yoink serve` command that starts an HTTP server with a
Sonarr/MeTube-inspired dark UI. Features a URL input bar for
triggering downloads, a 150x300 cover grid with filter and sort
controls, a live download queue strip, and toast notifications.

Includes Dockerfile (multi-stage, distroless runtime) and
docker-compose.yml for easy deployment.
This commit is contained in:
2026-03-08 22:02:24 -04:00
parent 5d7c324fb7
commit 25eee6f76a
8 changed files with 1070 additions and 1 deletions

37
Dockerfile Normal file
View File

@@ -0,0 +1,37 @@
# ── Build stage ────────────────────────────────────────────────────────────
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22-bullseye AS builder
WORKDIR /app
# Restore modules in a separate layer so it's cached until go.mod/go.sum change
COPY go.mod go.sum ./
RUN go mod download && go mod verify
# Copy source and build a fully static binary
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
go build -ldflags="-s -w" -trimpath -o yoink .
# ── Runtime stage ──────────────────────────────────────────────────────────
# distroless/base-debian12:nonroot — minimal attack surface, non-root by default
FROM gcr.io/distroless/base-debian12:nonroot
LABEL org.opencontainers.image.title="yoink" \
org.opencontainers.image.description="Comic downloader web UI" \
org.opencontainers.image.source="https://github.com/bryanlundberg/yoink-go"
WORKDIR /app
COPY --from=builder --chown=nonroot:nonroot /app/yoink .
ENV YOINK_LIBRARY=/library
VOLUME ["/library"]
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
CMD ["/app/yoink", "healthcheck"]
USER nonroot
CMD ["/app/yoink", "serve"]