You cannot 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
491 B
Markdown

9 years ago
* Add the Dockerfile to the root of your static files
9 years ago
* Init the git repository and/or add the remote of your dokku app:
```
git remote add dokku git@yourdomain.com:appname
```
9 years ago
* Commit all your changes and the repository
9 years ago
```
git commit -am Pushing to dokku
git push dokku master
9 years ago
```
9 years ago
* Optionally, add any extra domains with the domains plugin:
9 years ago
```
9 years ago
ssh dokku@yourdomain.com domains:add appname domain.com
9 years ago
```
9 years ago
Find all the available commands and help:
9 years ago
```
9 years ago
ssh dokku@yourdomain.com
9 years ago
```
9 years ago