Created
December 22, 2017 00:56
-
-
Save shawngmc/3c126976c8bdf2949cff9e6a2e40d741 to your computer and use it in GitHub Desktop.
Wiki.js docker command & basic config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker command to start it | |
docker run -d \ | |
-p 3000:3000 \ | |
-v /localdir/on/mybox/wikijs/config.yml:/var/wiki/config.yml \ | |
-e "[email protected]" \ | |
-e "VIRTUAL_HOST=wiki.mysite.com" \ | |
-e "LETSENCRYPT_HOST=wiki.mysite.com" \ | |
-e "[email protected]" \ | |
--name wikijs \ | |
requarks/wiki | |
# Last 3 env vars are for the auto-configuring nginx proxy I use. | |
--------------------------------------------- | |
Relevant snippet of my config.yml; I can give more on request | |
# --------------------------------------------------------------------- | |
# Full public path to the site, without the trailing slash | |
# --------------------------------------------------------------------- | |
# INCLUDE CLIENT PORT IF NOT 80/443! | |
host: https://wiki.mysite.com | |
# --------------------------------------------------------------------- | |
# Port the main server should listen to (80 by default) | |
# --------------------------------------------------------------------- | |
# To use process.env.PORT, comment the line below: | |
port: 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment