A basic, lightweight outbound mail server. Part of the Technoboggle Dev. Stack
2.7K
# Setting File permissions
xattr -c .git
xattr -c .gitignore
xattr -c .dockerignore
xattr -c *
chmod 0666 *
chmod 0777 *.sh
docker build -f Dockerfile --progress=plain -t technoboggle/postfix-alpine:3.7.2-3.16.1 --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') --build-arg VCS_REF="`git rev-parse --verify HEAD`" --build-arg BUILD_VERSION=0.05 --no-cache --progress=plain .
in the above pay special attenttion to the values to be updated which are:
1.21.6-3.16.1 = Postfix version - alpine version
"`git rev-parse --verify HEAD`" = git commit SHA key
0.05 = current version of this image
docker run -it -d --rm --name mypostfix technoboggle/postfix-alpine:3.7.2-3.16.1
docker tag technoboggle/postfix-alpine:3.7.2-3.16.1 technoboggle/postfix-alpine:latest
docker login
docker push technoboggle/postfix-alpine:3.7.2-3.16.1
docker push technoboggle/postfix-alpine:latest
docker container stop -t 10 mypostfix
deprecated the use of the :latest tag as it seeds confusion
Content type
Image
Digest
sha256:5b2373893…
Size
11.2 MB
Last updated
about 2 years ago
docker pull technoboggle/postfix-alpine