Skip to content

Commit

Permalink
Update mongo-express to version 0.32.0
Browse files Browse the repository at this point in the history
- Updated tini to armhf official version
- Updated Node.js to 6.9 version
- Updated README
  • Loading branch information
index02 committed Nov 30, 2016
1 parent 4e2fa8c commit a279cb5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
17 changes: 12 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
FROM hypriot/rpi-node:6-slim
FROM hypriot/rpi-node:6.9-slim

# grab tini for signal processing and zombie killing
ENV TINI_VERSION v0.10.0
ENV TINI_VERSION 0.13.0
RUN set -x \
&& wget -O /usr/local/bin/tini "https://github.com/ind3x/rpi-tini/releases/download/$TINI_VERSION/tini" \
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-armhf" \
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-armhf.asc"\
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 6380DC428747F6C393FEACA59A84159D7001A4E5 \
&& gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini \
&& rm -r "$GNUPGHOME" /usr/local/bin/tini.asc \
&& chmod +x /usr/local/bin/tini \
&& tini -h
&& tini -h \
&& apt-get purge --auto-remove -y ca-certificates \
&& rm -rf /var/lib/apt/lists/*

EXPOSE 8081

Expand All @@ -17,7 +24,7 @@ ENV ME_CONFIG_EDITORTHEME="default" \
ME_CONFIG_BASICAUTH_PASSWORD="" \
VCAP_APP_HOST="0.0.0.0"

ENV MONGO_EXPRESS 0.31.0
ENV MONGO_EXPRESS 0.32.0

RUN npm install mongo-express@$MONGO_EXPRESS

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

rpi-mongo-express is a web-based MongoDB admin interface written in Node.js, Express.js, and Bootstrap3 for Raspberry Pi.

> [github.com/ind3x/rpi-mongo-express-docker](https://github.com/ind3x/rpi-mongo-express-docker)
> Forked from [github.com/mongo-express/mongo-express-docker](https://github.com/mongo-express/mongo-express-docker)
> Forked from [github.com/mongo-express/mongo-express](https://github.com/mongo-express/mongo-express)
> [github.com/mongo-express/mongo-express](https://github.com/mongo-express/mongo-express)

![logo](https://raw.githubusercontent.com/ind3x/rpi-mongo-express-docker/master/logo.png)
Expand Down

0 comments on commit a279cb5

Please sign in to comment.