Dockerfile 258 B

123456789101112
  1. FROM requarks/wiki:latest
  2. # Replace with your email address:
  3. ENV WIKI_ADMIN_EMAIL admin@example.com
  4. WORKDIR /var/wiki
  5. # Replace your-config.yml with the path to your config file:
  6. ADD your-config.yml config.yml
  7. EXPOSE 3000
  8. ENTRYPOINT [ "node", "server" ]