2023-09-28 14:30:48 +00:00
|
|
|
ARG ALPINE_VERSION=3.18.3
|
|
|
|
FROM gitea.nulo.in/sutty/sutty:${ALPINE_VERSION}
|
|
|
|
MAINTAINER "nulo <nulo@sutty.nl>"
|
|
|
|
|
2023-09-28 15:17:28 +00:00
|
|
|
RUN apk add --no-cache pocketbase
|
2023-09-28 15:14:48 +00:00
|
|
|
COPY 1687801090_sutty_initial_admin.js /pb/pb_migrations/
|
2023-09-28 14:30:48 +00:00
|
|
|
|
|
|
|
WORKDIR /pb
|
|
|
|
VOLUME /pb/pb_data
|
|
|
|
VOLUME /pb/pb_migrations
|
2023-09-28 15:14:48 +00:00
|
|
|
CMD ["pocketbase", "serve", "--http=0.0.0.0:8080", "--automigrate"]
|
2023-09-28 14:30:48 +00:00
|
|
|
EXPOSE 8080
|