31 lines
718 B
Docker
31 lines
718 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "J. Elfring <code@elfring.ms>"
|
|
|
|
ARG PB_VERSION=0.22.23
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
unzip
|
|
|
|
ADD --chown=daemon:daemon \
|
|
https://github.com/pocketbase/pocketbase/releases/download/v${PB_VERSION}/pocketbase_${PB_VERSION}_linux_amd64.zip \
|
|
/tmp/pb.zip
|
|
|
|
RUN mkdir /pb \
|
|
&& chown daemon:daemon /pb
|
|
|
|
USER daemon
|
|
WORKDIR /pb
|
|
|
|
RUN unzip /tmp/pb.zip -d /pb/
|
|
|
|
# uncomment to copy the local pb_migrations dir into the image
|
|
# COPY ./pb_migrations /pb/pb_migrations
|
|
|
|
# uncomment to copy the local pb_hooks dir into the image
|
|
# COPY ./pb_hooks /pb/pb_hooks
|
|
|
|
EXPOSE 8080
|
|
|
|
# start PocketBase
|
|
CMD ["/pb/pocketbase", "serve", "--http=0.0.0.0:8080"]
|