Vel / Dockerfile
WenDavid's picture
Update Dockerfile
567c1db verified
raw
history blame contribute delete
298 Bytes
FROM ghcr.io/veloera/veloera:latest
RUN mkdir -p /data/logs \
&& chown -R 1000:1000 /data
EXPOSE 3000
CMD ["--log-dir", "/data/logs"]
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
CMD sh -c "wget -q -O - http://localhost:3000/api/status | grep -o '\"success\":\\s*true' || exit 1"