Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tobiasmcnulty/dokku-aws
One-click Dokku instance on AWS.
https://github.com/tobiasmcnulty/dokku-aws
aws cloudformation-template dokku
Last synced: 4 days ago
JSON representation
One-click Dokku instance on AWS.
- Host: GitHub
- URL: https://github.com/tobiasmcnulty/dokku-aws
- Owner: tobiasmcnulty
- License: mit
- Created: 2017-09-17T19:09:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-29T17:11:22.000Z (about 7 years ago)
- Last Synced: 2024-11-05T19:42:45.536Z (8 days ago)
- Topics: aws, cloudformation-template, dokku
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 51
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Dokku AWS
=========This is a simple CloudFormation stack for deploying a `Dokku `_
instance to EC2 using an Ubuntu 16.04 LTS AMI. The instance is configured with an Elastic IP, so the
IP will stay the same in case of stack updates that require the instance to be replaced.If you wish to use your Dokku instance with S3, RDS, ElastiCache, and/or Elasticsearch, you should
use `aws-web-stacks `_ instead.The CloudFormation templates are written in `troposphere `_,
which allows for some validation at build time and simplifies the management of several related
templates.You can launch a new instance by clicking the Launch Stack button below or by pointing CloudFormation
to the `underlying template`_ manually. Before launching a stack, make sure to upload your SSH public key
to the `Key Pairs `_ section of the
AWS console (this will be used both to allow logins to the ``ubuntu`` user on your EC2 instance and
to allow deploys via the ``dokku`` user).|dokku-stack|_
.. |dokku-stack| image:: https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png
.. _dokku-stack: https://console.aws.amazon.com/cloudformation/home?#/stacks/new?stackName=my-dokku-stack&templateURL=https://s3.amazonaws.com/dokku-aws/dokku_stack.json
.. _underlying template: https://s3.amazonaws.com/dokku-aws/dokku_stack.jsonUsing the default values in this template (a ``t2.micro`` instance and 30 GB of disk space), your new
Dokku instance should fit within the `free tier `_ on AWS.DNS
---After the stack is created, you'll want to inspect the Outputs for the PublicIP of the instance and
create a DNS ``A`` record (possibly including a wildcard record, if you're using vhost-based apps)
for your chosen domain.For help creating a DNS record, please refer to the `Dokku DNS documentation
`_.Deployment
----------Dokku may take 5-10 minutes to install, even after the stack has finished creating. Once that's complete,
create a new app on the remote server::ssh dokku@ apps:create python-sample
and deploy Heroku's Python sample to that app::
git clone https://github.com/heroku/python-sample.git
cd python-sample
git remote add dokku dokku@:python-sample
git push dokku masterYou should be able to watch the build complete in the output from the ``git push`` command. If the
deploy completes successfully, you should be able to see "Hello world!" at
http://python-sample.your.domain/For additional help deploying to your new instance, please refer to the `Dokku documentation
`_.Let's Encrypt
-------------We might as well get a free SSL certificate from Let's Encrypt, while we're at it::
ssh ubuntu@ sudo dokku plugin:install https://github.com/dokku/dokku-letsencrypt.git
ssh dokku@ config:set --no-restart python-sample [email protected]
ssh dokku@ letsencrypt python-sampleThe Python sample app should now be accessible over HTTPS at https://python-sample.your.domain/
Good luck and have fun!
Copyright 2017 Tobias McNulty.