FROM alpine:latest ARG PB_VERSION=0.26.5 RUN apk add --no-cache \ unzip \ ca-certificates ADD https://github.com/pocketbase/pocketbase/releases/download/v${PB_VERSION}/pocketbase_${PB_VERSION}_linux_amd64.zip /tmp/pb.zip RUN unzip /tmp/pb.zip -d /pb/ && \ rm /tmp/pb.zip && \ chmod +x /pb/pocketbase RUN mkdir -p /pb/pb_data COPY pb_migrations /pb/pb_migrations EXPOSE 8090 HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://localhost:8090/api/health || exit 1 CMD ["/pb/pocketbase", "serve", "--http=0.0.0.0:8090", "--dir=/pb/pb_data", "--migrationsDir=/pb/pb_migrations"]