Commit 4e4614e6 authored by NGPixel's avatar NGPixel Committed by Nicolas Giard

fix: Docker fixes

parent 00da4e3e
FROM node:6-alpine
FROM node:8-alpine
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh
ENV WIKI_JS_DOCKER 1
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN npm install wiki.js@latest
EXPOSE 3000
CMD [ "node", "server" ]
ENTRYPOINT [ "node", "server" ]
......@@ -6,10 +6,10 @@ services:
- '27017'
command: '--smallfiles --logpath=/dev/null'
wikijs:
image: 'requarks/wiki:master'
image: 'requarks/wiki:latest'
links:
- wikidb
ports:
- '3000'
environment:
- PORT: 3000
- PORT=3000
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment