From 6dce80f66b868904fe4c579f3314223cd4c3f81c Mon Sep 17 00:00:00 2001 From: Otlet Date: Mon, 4 Sep 2017 12:32:46 +0200 Subject: [PATCH] Update --- Dockerfile | 4 ++-- README.md | 22 ++++++---------------- ci/mailtrain_deploy | 2 +- ci/mailtrain_test | 6 +++--- 4 files changed, 12 insertions(+), 22 deletions(-) diff --git a/Dockerfile b/Dockerfile index 304c581..fdc65e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM evild/alpine-nodejs:6.3.0 -MAINTAINER DOMINIQUE HAAS +MAINTAINER PAWEL OTLEWSKI -ARG MAILTRAIN_VERSION=1.20.0 +ARG MAILTRAIN_VERSION=1.24.0 RUN set -ex && apk add --no-cache curl \ && cd /tmp \ diff --git a/README.md b/README.md index f89ac2b..083f752 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,14 @@ [![Docker Stars](https://img.shields.io/docker/stars/evild/alpine-mailtrain.svg?style=flat-square)](https://hub.docker.com/r/evild/alpine-mailtrain/) [![Docker Pulls](https://img.shields.io/docker/pulls/evild/alpine-mailtrain.svg?style=flat-square)](https://hub.docker.com/r/evild/alpine-mailtrain/) -[![ImageLayers Size](https://img.shields.io/imagelayers/image-size/evild/alpine-mailtrain/latest.svg?style=flat-square)](https://hub.docker.com/r/evild/alpine-mailtrain/) +[![ImageLayers Size](https://img.shields.io/imagelayers/image-size/otlet/alpine-mailtrain/latest.svg?style=flat-square)](https://hub.docker.com/r/evild/alpine-mailtrain/) # Alpine Mailtrain -This image is based on [evild/alpine-nodejs](https://hub.docker.com/r/evild/alpine-nodejs/) +This image is forked from [(Evild67/docker-alpine-mailtrain)](https://github.com/Evild67/docker-alpine-mailtrain/) ## Version -- `latest` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/master/Dockerfile) -- `1.18.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/cdf6887bf0685d90b02115a3a57f7bdd2dac7d1d/Dockerfile) -- `1.17.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/e270accdd12844fb6d5ec9ac30fc20c46a32f29d/Dockerfile) -- `1.16.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/05c8d19786c986f8169ca4b472977476c7adfa80/Dockerfile) -- `1.15.1` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/51e68c63c5fde5095451cbc347adb5de73c5eea1/Dockerfile) -- `1.15.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/63cf2919cac4131990db9df214fa4b684cba9c22/Dockerfile) -- `1.14.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/039b80a81bfe5bad477f371a09175006a57e1386/Dockerfile) -- `1.13.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/03f3f11899eea4052c269b68924932695b88f539/Dockerfile) -- `1.12.1` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/f6c71bce68e0aaf6f343cec8779b07e32a41d4fa/Dockerfile) -- `1.12.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/a2f47d49327d1cf4db6ae7cb950aec93eaf56963/Dockerfile) -- `1.11.0` [(Dockerfile)](https://github.com/Evild67/docker-alpine-mailtrain/blob/aff86ff3817eb139e9e043bb8a9c60a50238f32f/Dockerfile) +- `latest` [(Dockerfile)](https://github.com/otlet/docker-alpine-mailtrain/blob/master/Dockerfile) ## What is Mailtrain? @@ -27,15 +17,15 @@ Mailtrain is a self hosted newsletter application built on Node.js (v5+) and MyS ## Installation Automated builds of the image are available on Dockerhub and is the recommended method of installation. ``` -docker pull evild/alpine-mailtrain:1.13.0 +docker pull otlet/alpine-mailtrain:1.19.0 ``` You can also pull the latest tag which is built from the repository HEAD. ``` -docker pull evild/alpine-mailtrain:latest +docker pull otlet/alpine-mailtrain:latest ``` ## How to use this image -You can check my [docker-compose](https://github.com/Evild67/docker-alpine-mailtrain/blob/master/docker-compose.yml). +You can check my [docker-compose](https://github.com/otlet/docker-alpine-mailtrain/blob/master/docker-compose.yml). To start your stack : ``` diff --git a/ci/mailtrain_deploy b/ci/mailtrain_deploy index c8ba23b..3b6df00 100755 --- a/ci/mailtrain_deploy +++ b/ci/mailtrain_deploy @@ -3,4 +3,4 @@ set -e git checkout master -git push --mirror https://$GITHUB_TOKEN@github.com/Evild67/docker-alpine-mailtrain.git +git push --mirror https://$GITHUB_TOKEN@github.com/otlet/docker-alpine-mailtrain.git diff --git a/ci/mailtrain_test b/ci/mailtrain_test index 014e21e..cc26ee3 100755 --- a/ci/mailtrain_test +++ b/ci/mailtrain_test @@ -3,9 +3,9 @@ set -e -docker build -t evild/alpine-mailtrain:latest . -docker inspect evild/alpine-mailtrain:latest +docker build -t otlet/alpine-mailtrain:latest . +docker inspect otlet/alpine-mailtrain:latest docker login -u $DOCKERHUB_LOGIN -p $DOCKERHUB_PASSWORD -docker push evild/alpine-mailtrain:latest +docker push otlet/alpine-mailtrain:latest