Skip to content

Commit 2eff49f

Browse files
committed
Merge branch 'release/0.17.0'
2 parents 9e4156d + 5d5c4d2 commit 2eff49f

File tree

3 files changed

+32
-16
lines changed

3 files changed

+32
-16
lines changed

.travis.yml

+24-11
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,28 @@ before_install:
99
- docker --version
1010
- docker pull alpine:latest
1111

12-
script:
13-
# Build Image
14-
- docker build -t polinux/mkdocs .
1512

16-
#
17-
# Test daemon mode (default settings)
18-
#
19-
- docker run -d --cap-add NET_ADMIN -p 8000:8000 --name mkdocs polinux/mkdocs && sleep 10
20-
21-
# Test direct request to Nginx
22-
- curl -sSLi http://mkdocs:8000 | grep '200 OK'
23-
13+
jobs:
14+
include:
15+
- stage: build
16+
script:
17+
- docker build -t polinux/mkdocs:travis .
18+
- docker login -u $DOCKER_USER -p $DOCKER_PASS
19+
- docker push polinux/mkdocs:travis
20+
21+
- stage: test
22+
script:
23+
- docker login -u $DOCKER_USER -p $DOCKER_PASS
24+
- docker run -d --cap-add NET_ADMIN -p 8000:8000 --name mkdocs polinux/mkdocs:travis
25+
- sleep 10
26+
- curl -sSLi http://mkdocs:8000 | grep '200 OK'
27+
28+
- name: deploy
29+
if: branch = master
30+
script:
31+
- docker login -u $DOCKER_USER -p $DOCKER_PASS
32+
- docker pull polinux/mkdocs:travis
33+
- docker tag polinux/mkdocs:travis polinux/mkdocs:latest
34+
- docker tag polinux/mkdocs:travis polinux/mkdocs:$TRAVIS_TAG
35+
- docker push polinux/mkdocs:$TRAVIS_TAG
36+
- docker push polinux/mkdocs:latest

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:latest
22

3-
ENV MKDOCS_VERSIO="0.16.3"
3+
ENV MKDOCS_VERSION="0.17.0"
44

55
RUN \
66
apk add --update \
@@ -10,7 +10,7 @@ RUN \
1010
python2-dev \
1111
py-setuptools && \
1212
easy_install-2.7 pip && \
13-
pip install mkdocs==${MKDOCS_VERSIO} && \
13+
pip install mkdocs==${MKDOCS_VERSION} && \
1414
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*
1515

1616
COPY container-files /

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
[![GitHub Open Issues](https://img.shields.io/github/issues/pozgo/docker-mkdocs.svg)](https://github.com/pozgo/docker-mkdocs/issues)
55
[![GitHub Stars](https://img.shields.io/github/stars/pozgo/docker-mkdocs.svg)](https://github.com/pozgo/docker-mkdocs)
66
[![GitHub Forks](https://img.shields.io/github/forks/pozgo/docker-mkdocs.svg)](https://github.com/pozgo/docker-mkdocs)
7-
[![Stars on Docker Hub](https://img.shields.io/docker/stars/polinux/mkdocs.svg)](https://hub.docker.com/r/polinux/mkdocs)
8-
[![Pulls on Docker Hub](https://img.shields.io/docker/pulls/polinux/mkdocs.svg)](https://hub.docker.com/r/polinux/mkdocs)
97
[![](https://images.microbadger.com/badges/version/polinux/mkdocs.svg)](http://microbadger.com/images/polinux/mkdocs)
10-
[![](https://images.microbadger.com/badges/license/polinux/mkdocs.svg)](http://microbadger.com/images/polinux/mkdocs)
118
[![](https://images.microbadger.com/badges/image/polinux/mkdocs.svg)](http://microbadger.com/images/polinux/mkdocs)
129

10+
[![Docker build](http://dockeri.co/image/polinux/mkdocs)](https://hub.docker.com/r/polinux/mkdocs/)
11+
12+
13+
Felling like supporting me in my projects use donate button. Thank You!
14+
[![](https://img.shields.io/badge/donate-PayPal-blue.svg)](https://www.paypal.me/POzgo)
15+
1316
[Docker Image](https://registry.hub.docker.com/u/polinux/mkdocs/) with [MkDocs](http://www.mkdocs.org/). It's using tiny image provided by Alpine.
1417
MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentation. Documentation source files are written in Markdown, and configured with a single YAML configuration file.
1518

0 commit comments

Comments
 (0)