Sign inSign up

xmapst/alps

By xmapst

Updated about 5 years ago

Alps – an emerging open-source modern webmail with potential to topple most PHP based webmail

Image
0

1.0K

xmapst/alps repository overview

Alps Webmail

an emerging open-source modern webmail with potential to topple most PHP based webmail

Dcokerfile

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"]

RUN

docker run -it --name webmail alps:test imaps://imap.your-mail-domain.com:993 smtps://smtp.your-mail-domain.com.com:465

Tag summary

Content type

Image

Digest

Size

6.3 MB

Last updated

about 5 years ago

docker pull xmapst/alps