mirror of https://github.com/requarks/wiki
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.
20 lines
382 B
20 lines
382 B
8 years ago
|
version: '3'
|
||
|
services:
|
||
|
wikidb:
|
||
|
image: mongo
|
||
7 years ago
|
expose:
|
||
|
- '27017'
|
||
8 years ago
|
command: '--smallfiles --logpath=/dev/null'
|
||
7 years ago
|
volumes:
|
||
|
- ./data/mongo:/data/db
|
||
8 years ago
|
wikijs:
|
||
8 years ago
|
image: 'requarks/wiki:latest'
|
||
8 years ago
|
links:
|
||
|
- wikidb
|
||
|
ports:
|
||
7 years ago
|
- '80:3000'
|
||
8 years ago
|
environment:
|
||
7 years ago
|
WIKI_ADMIN_EMAIL: admin@example.com
|
||
7 years ago
|
volumes:
|
||
|
- ./config.yml:/var/wiki/config.yml
|