bumped wiki version to 0.12.0

This commit is contained in:
Eric Dobbs 2017-09-04 21:56:47 -06:00
parent bc8204c9d3
commit e06405adc1
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ RUN useradd --create-home app \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
jq jq
WORKDIR /home/app WORKDIR /home/app
ARG VERSION=0.11.4 ARG VERSION=0.12.0
RUN su app -c "npm install -g --prefix . wiki@$VERSION" RUN su app -c "npm install -g --prefix . wiki@$VERSION"
RUN su app -c "mkdir .wiki" RUN su app -c "mkdir .wiki"
COPY configure-and-launch-wiki set-owner-name ./ COPY configure-and-launch-wiki set-owner-name ./

View File

@ -53,7 +53,7 @@ Open http://that.localtest.me:3000 in another.
# Development # Development
``` bash ``` bash
VERSION=0.11.4 VERSION=0.12.0
docker build --build-arg VERSION=$VERSION -t dobbs/farm:$VERSION . docker build --build-arg VERSION=$VERSION -t dobbs/farm:$VERSION .
git tag $VERSION git tag -am "" $VERSION
``` ```