diff --git a/repos/c231172db37d5393f722/Dockerfile b/repos/c231172db37d5393f722/Dockerfile new file mode 100644 index 0000000..203a7bf --- /dev/null +++ b/repos/c231172db37d5393f722/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx + +EXPOSE 80 +ADD . /usr/share/nginx/html/ diff --git a/repos/c231172db37d5393f722/README.md b/repos/c231172db37d5393f722/README.md new file mode 100644 index 0000000..dd696e8 --- /dev/null +++ b/repos/c231172db37d5393f722/README.md @@ -0,0 +1,20 @@ +* Add the Dockerfile to the root of your static files +* Init the git repository and/or add the remote of your dokku app: +``` +git remote add dokku git@yourdomain.com:appname +``` +* Commit all your changes and the repository +``` +git commit -am Pushing to dokku +git push dokku master +``` +* Optionally, add any extra domains with the domains plugin: +``` +ssh dokku@yourdomain.com domains:add appname domain.com +``` + +Find all the available commands and help: +``` +ssh dokku@yourdomain.com +``` + \ No newline at end of file