You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
258 B

  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" ]