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.

15 lines
257 B

  1. version: '3'
  2. services:
  3. wikidb:
  4. image: mongo
  5. ports:
  6. - '27017'
  7. command: '--smallfiles --logpath=/dev/null'
  8. wikijs:
  9. image: 'requarks/wiki:master'
  10. links:
  11. - wikidb
  12. ports:
  13. - '3000'
  14. environment:
  15. - PORT: 3000