Audited every Dockerfile, compose file and .env.example against the code
they deploy. Four things had drifted:
Persistence. The API Server writes plugins.json and rewrites .env (the
panel's retarget-PocketBase flow) relative to its working directory,
which was a root-owned /app while the process runs as the app user - so
both writes failed, and no volume was declared to keep them anyway. The
binary moves to /usr/local/bin and the working directory becomes a /data
volume owned by app. The AIO image gets the same via directory=/data on
its supervisord program.
OCPP. Charger control was undeployable: OCPP_REQUIRE_TLS defaults to true
and appeared in no Docker file, so a charger dialling the plain-HTTP
/ocpp/{serial} was rejected with nothing explaining why. Both OCPP vars
are now threaded through the compose files and env examples, with the
reasoning (the per-charger control token rides in a Basic-auth header).
CORS. API Server/docker-compose.yml defaulted to localhost:5173, the Vite
dev port, where every other file uses 8090.
Env names. .env.example has called PB_URL/PB_ADMIN_*/PORT legacy for a
while, but the Docker layer still used them. Container-side names are now
POCKETBASE_*/API_ADDR; the .env keys operators set stay PB_ADMIN_* so
existing .env files keep working.
Left alone deliberately: alpine:latest stays unpinned (cannot verify
current tags or test the build from here), and the golang/node bases
already match go.mod and Vite 8's floor.
Validated as YAML only - there is no Docker CLI on this machine, so no
image was built and the /data ownership fix follows standard volume
semantics rather than an observed run.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
182 lines
6.4 KiB
Docker
182 lines
6.4 KiB
Docker
# syntax=docker/dockerfile:1
|
|
#
|
|
# All-in-one image: PocketBase + API Server + Web App in a single container.
|
|
#
|
|
# The build context MUST be the project root so this file can reach both
|
|
# "API Server/" and "Web App/". Build it with:
|
|
#
|
|
# docker build -f "Docker AIO/Dockerfile" -t drivervault-aio .
|
|
#
|
|
# Run it (all three services start together):
|
|
#
|
|
# docker run -d --name drivervault -p 80:80 -p 8070:8070 \
|
|
# -e PB_ADMIN_EMAIL=admin@example.com \
|
|
# -e PB_ADMIN_PASSWORD=change-me \
|
|
# -e DRIVERVAULT_SUPERADMIN_EMAIL=owner@example.com \
|
|
# -e DRIVERVAULT_SUPERADMIN_PASSWORD=change-me \
|
|
# -v drivervault_pb:/pb/pb_data \
|
|
# -v drivervault_api:/data \
|
|
# drivervault-aio
|
|
#
|
|
# Then: web app on http://host/ and PocketBase admin on http://host:8070/_/
|
|
# On first boot the API Server creates the collections and the super-admin.
|
|
|
|
# --- Stage 1: build the Go API Server ---------------------------------------
|
|
FROM golang:1.26-alpine AS api-build
|
|
WORKDIR /src
|
|
COPY ["API Server/go.mod", "./"]
|
|
COPY ["API Server/go.su[m]", "./"]
|
|
RUN go mod download
|
|
# Only cmd/ + internal are needed; the panel is already built into
|
|
# internal/api/dist and embedded via //go:embed. Entry point is cmd/server.
|
|
COPY ["API Server/cmd", "./cmd"]
|
|
COPY ["API Server/internal", "./internal"]
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags="-s -w" -o /out/api-server ./cmd/server
|
|
|
|
# --- Stage 2: build the Vue Web App -----------------------------------------
|
|
# The Vue source lives under "Web App/web/".
|
|
FROM node:22-alpine AS web-build
|
|
WORKDIR /app
|
|
COPY ["Web App/web/package.json", "Web App/web/package-lock.json", "./"]
|
|
RUN npm ci
|
|
COPY ["Web App/web/index.html", "Web App/web/vite.config.js", "./"]
|
|
COPY ["Web App/web/src", "./src"]
|
|
COPY ["Web App/web/public", "./public"]
|
|
# Empty -> bundle uses same-origin "/api", proxied to the API Server by nginx.
|
|
ARG VITE_API_BASE
|
|
# vite.config writes to ../server/dist by default; emit into ./dist here.
|
|
RUN npm run build -- --outDir dist --emptyOutDir
|
|
|
|
# --- Stage 3: runtime (all services) ----------------------------------------
|
|
FROM alpine:latest
|
|
|
|
ARG PB_VERSION=""
|
|
ARG TARGETARCH="amd64"
|
|
|
|
RUN apk add --no-cache ca-certificates tzdata unzip wget nginx supervisor \
|
|
&& mkdir -p /run/nginx
|
|
|
|
# PocketBase from the official release (pinned via PB_VERSION, else latest).
|
|
WORKDIR /pb
|
|
RUN set -eux; \
|
|
ver="${PB_VERSION}"; \
|
|
if [ -z "$ver" ]; then \
|
|
ver="$(wget -qO- https://api.github.com/repos/pocketbase/pocketbase/releases/latest \
|
|
| grep -o '"tag_name": *"v[^"]*"' | head -1 | sed -E 's/.*"v([^"]+)".*/\1/')"; \
|
|
fi; \
|
|
echo "Installing PocketBase v${ver} (${TARGETARCH})"; \
|
|
wget -q -O /tmp/pb.zip \
|
|
"https://github.com/pocketbase/pocketbase/releases/download/v${ver}/pocketbase_${ver}_linux_${TARGETARCH}.zip"; \
|
|
unzip /tmp/pb.zip -d /pb; \
|
|
rm /tmp/pb.zip
|
|
|
|
# API Server binary + built Web App static assets.
|
|
COPY --from=api-build /out/api-server /usr/local/bin/api-server
|
|
COPY --from=web-build /app/dist /usr/share/nginx/html
|
|
|
|
# nginx: serve the SPA and proxy /api/ to the API Server on localhost.
|
|
RUN cat > /etc/nginx/http.d/default.conf <<'NGINX'
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
|
gzip_min_length 1024;
|
|
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /assets/ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
NGINX
|
|
|
|
# supervisord runs the three processes and keeps them alive.
|
|
RUN cat > /etc/supervisord.conf <<'SUPERVISOR'
|
|
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
pidfile=/run/supervisord.pid
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
|
|
; PocketBase: upsert the superuser (idempotent) then serve.
|
|
[program:pocketbase]
|
|
directory=/pb
|
|
command=/bin/sh -c '/pb/pocketbase superuser upsert "$PB_ADMIN_EMAIL" "$PB_ADMIN_PASSWORD" 2>/dev/null || true; exec /pb/pocketbase serve --http=0.0.0.0:8070'
|
|
priority=10
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
; API Server: wait for PocketBase to be healthy, then start. It runs from /data
|
|
; because it writes plugins.json and the panel's .env relative to its working
|
|
; directory, and /data is the volume that keeps them across container recreates.
|
|
[program:api-server]
|
|
directory=/data
|
|
command=/bin/sh -c 'until wget -qO- http://127.0.0.1:8070/api/health >/dev/null 2>&1; do echo "waiting for pocketbase..."; sleep 1; done; exec /usr/local/bin/api-server'
|
|
priority=20
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:nginx]
|
|
command=/usr/sbin/nginx -g 'daemon off;'
|
|
priority=30
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
SUPERVISOR
|
|
|
|
# API Server config: everything is local to this container.
|
|
ENV API_ADDR=:8080 \
|
|
POCKETBASE_URL=http://127.0.0.1:8070 \
|
|
CORS_ALLOW_ORIGINS=http://localhost:8090 \
|
|
AUTH_USERS_COLLECTION=users \
|
|
PLUGINS_FILE=/data/plugins.json
|
|
|
|
# Required at runtime (no safe defaults): PB_ADMIN_EMAIL, PB_ADMIN_PASSWORD.
|
|
# Optional: DRIVERVAULT_SUPERADMIN_EMAIL / DRIVERVAULT_SUPERADMIN_PASSWORD create
|
|
# the first app super-admin on boot; PB_BOOTSTRAP=false skips schema setup.
|
|
# For Anker Solix charger control, OCPP_REQUIRE_TLS (default true) rejects
|
|
# chargers that did not arrive over TLS — this image serves plain HTTP, so put a
|
|
# TLS-terminating proxy in front and set OCPP_PUBLIC_URL to the public wss://
|
|
# base, or set OCPP_REQUIRE_TLS=false on a trusted network.
|
|
# Pass them with `docker run -e ...`.
|
|
|
|
RUN mkdir -p /data
|
|
# pb_data holds the database; /data holds the API Server's plugins.json and the
|
|
# .env the panel rewrites when a superadmin retargets PocketBase.
|
|
VOLUME /pb/pb_data
|
|
VOLUME /data
|
|
# 80 = Web App, 8070 = PocketBase admin, 8080 = API Server + embedded API panel
|
|
# (also the /ocpp/{serial} endpoint chargers dial into).
|
|
EXPOSE 80 8070 8080
|
|
|
|
CMD ["supervisord", "-c", "/etc/supervisord.conf"]
|