An instruction on how to deploy a node app to a server that is running dokku.
- Ensure the app meets these requirements:
- The app accepts
process.env.PORT
- If the app has a build step, specify it in a
postinstall
hook inpackage.json
. - If the app has private dependencies, specify them using the syntax
"dependency-name": "git+ssh://git@bitbucket.org:organization/repository.git#tag"
. - The default node buildpack will specify
NODE_ENV=production
by default. If you need a different environment for a specific task (e.g.npm run test
), specify it explicitly in the respective npm script (e.g.NODE_ENV=test npm run test
).
- The app accepts
git remote add dokku dokku@dokku-host:node-app
This repository contains an app that meets these requirements (but has no private dependencies).
First install dokku.
Then:
# Create the app
dokku apps:create node-app
# Set up a port mapping
dokku config:set node-app DOKKU_PROXY_PORT_MAP=http:80:5000
# Enable installing dev dependencies
dokku config:set node-app NPM_CONFIG_PRODUCTION=false
If the app has private dependencies e.g. from Bitbucket, setup ssh keys:
- Install dokku-deployment-keys. If the generated public key isn't printed, look it up under
/home/dokku/.deployment-keys/shared/.ssh/id_rsa.pub
. - Add the public key to a Bitbucket user that has access to the used repositories (usually a dedicated build user).
- Install dokku-hostkeys and run
dokku hostkeys:shared:autoadd bitbucket.org
. - Login as the
dokku
user and verify the app can be cloned and its dependencies installed. If there are issues, generate an ssh key manually and try again. After this, copy the key pair to.deployment-keys/shared/.ssh/
and theknown_hosts
file to.hostkeys/shared/.ssh/
.
After the app and the host is set up, you can deploy with git push dokku master
from the app directory on your local machine.
Parameters that are secret or affect Dokku behaviour should be applied via dokku config:set node-app ENV_PARAM_1=false
. These parameters are shared for all commands that are executed during the deploy (e.g. npm run build
and npm run start
).
Other env parameters should be applied in npm scripts so they are decoupled from the hosting (e.g. NODE_ENV=production npm start
).
dokku domains:add node-app www.domain.tld
- Add an
A
record that points to the public IP of the server.
- Make sure the app has a domain.
- Install dokku-letsencrypt.
dokku letsencrypt node-app
dokku letsencrypt:cron-job --add
so the certificate is renewed automatically.
- Enable pipelines.
- Generate an SSH key for the pipelines script and add it to dokku.
- Add the dokku host as a known host in pipelines.
- If you're using private dependencies, also add bitbucket.org as a known host.
- Define the environment variable
DOKKU_REMOTE_URL
. - Use the
bitbucket-pipelines.yml
file from this repo.