1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

upgrade ghost-arm to 0.9.0

This commit is contained in:
kev 2016-07-29 09:03:01 +08:00
parent 9ed2ffe495
commit 0435682788
2 changed files with 4 additions and 4 deletions

@ -5,7 +5,7 @@
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
ENV GHOST_VER 0.7.9
ENV GHOST_VER 0.9.0
ENV GHOST_URL https://ghost.org/archives/ghost-$GHOST_VER.zip
ENV GHOST_SOURCE /usr/src/ghost
ENV GHOST_CONTENT /var/lib/ghost
@ -15,7 +15,7 @@ VOLUME $GHOST_CONTENT
RUN set -ex \
&& apk add -U bash \
nodejs \
nodejs-lts \
&& apk add -t TMP build-base \
curl \
python \
@ -32,4 +32,4 @@ COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 2368
CMD ["npm", "start"]
CMD ["npm", "start", "--production"]

@ -1,5 +1,5 @@
ghost:
image: vimagick/ghost-arm
image: easypi/ghost-arm
ports:
- "2368:2368"
restart: always