Alps – an emerging open-source modern webmail with potential to topple most PHP based webmail
1.0K
an emerging open-source modern webmail with potential to topple most PHP based webmail
FROM golang:alpine3.14
WORKDIR /go/src
RUN apk update \
&& apk add git upx \
&& git clone https://git.sr.ht/~migadu/alps \
&& cd alps \
&& CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags "-s -w" -o alps ./cmd/alps \
&& upx --lzma alps \
&& chmod +x alps
FROM alpine:latest
WORKDIR /app
COPY --from=0 /go/src/alps/alps .
COPY --from=0 /go/src/alps/plugins ./plugins
COPY --from=0 /go/src/alps/themes ./themes
EXPOSE 1323
ENTRYPOINT ["/app/alps"]
docker run -it --name webmail alps:test imaps://imap.your-mail-domain.com:993 smtps://smtp.your-mail-domain.com.com:465
Content type
Image
Digest
Size
6.3 MB
Last updated
about 5 years ago
docker pull xmapst/alps