From 4925631ce325211cea0d35435e4cc93056090f8d Mon Sep 17 00:00:00 2001 From: Richard Garai Date: Thu, 21 Jul 2022 15:48:48 +0200 Subject: [PATCH] first commit --- Dockerfile | 20 ++++++++++++++++++++ README.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..01a3cc7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM golang:alpine as builder + +RUN apk --update upgrade && \ + apk --no-cache --no-progress add git + +ENV GO111MODULE on + +RUN git clone https://github.com/emersion/hydroxide/ /hydroxide + +WORKDIR /hydroxide +RUN go build ./cmd/hydroxide + + +FROM alpine:latest + +WORKDIR /hydroxide +COPY --from=builder /hydroxide/hydroxide . + +ENV XDG_CONFIG_HOME /.config +ENTRYPOINT [ "/hydroxide/hydroxide", "-smtp-host", "0.0.0.0" ] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9805799 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# hydroxide docker + +This image is used for `okki.hu` services. + +# usage + +## fetch the image + +``` +docker pull garricasaurus/hydroxide-docker +``` + +## config dir + +Create a config dir on the host, we will use this for most of the commands to mount as a volume: + +``` +mkdir -p $HOME/.config/hydroxide +``` + +## authenticate + +``` +docker run -it \ + -v $HOME/.config/hydroxide:/.config/hydroxide \ + hydroxide auth +``` + +Store the printed bridge password __securely__. + +## verify login status + +``` +docker run -it \ + -v $HOME/.config/hydroxide:/.config/hydroxide \ + hydroxide status +``` + +## smtp server + +The following command starts the smtp server on port 1025 as an always running daemon: + +``` +docker run -d --name hydroxide \ + --restart unless-stopped \ + -v $HOME/.config/hydroxide:/.config/hydroxide \ + -p 1025:1025 \ + hydroxide smtp +``` \ No newline at end of file