Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Heroku-style deploying on your own servers with Dokku

Heroku-style deploying on your own servers with Dokku

Dokku advertises itself as the "Docker powered mini-Heroku in less than 100 lines of Bash". This session will show how to get Dokku setup and ready to deploy your own applications. It covers the lifecycle of configuring, pushing and removing your apps.

Finally we'll explore the plugins that make up the Dokku ecosystem. At the end of the talk you should be able to deploy your favorite app on your private PaaS!

http://conference.phpne.org.uk/

Alexander

March 18, 2014
Tweet

More Decks by Alexander

Other Decks in Technology

Transcript

  1. PHP

  2. $ git init . Initialized empty Git repository in /../demo/phpne-app/.git/

    $ echo "<?php echo 'hello world';" > index.php
  3. $ git init . Initialized empty Git repository in /../demo/phpne-app/.git/

    $ echo "<?php echo 'hello world';" > index.php $ ll total 4.0K -rw-rw---- 1 asm users 26 Mar 18 11:26 index.php
  4. $ git init . Initialized empty Git repository in /../demo/phpne-app/.git/

    $ echo "<?php echo 'hello world';" > index.php $ ll total 4.0K -rw-rw---- 1 asm users 26 Mar 18 11:26 index.php $ git add index.php
  5. $ git init . Initialized empty Git repository in /../demo/phpne-app/.git/

    $ echo "<?php echo 'hello world';" > index.php $ ll total 4.0K -rw-rw---- 1 asm users 26 Mar 18 11:26 index.php $ git add index.php $ git commit -m "hi"
  6. CLI