有人有 AWS Docker Rails 配置的示例吗

Does someone has an example of Docker Rails configuation for AWS

我一直在使用 OpsWorks 和自定义食谱,它工作正常,但我最近一直在阅读 Docker 并且看起来非常有趣,主要是因为资源优化。

所以我正在寻找一个博客 post,它可以指导我思考在 AWS

上使用 docker 进行设置的过程

提前致谢!

我不熟悉 AWS。但要获得 docker 运行 请遵循:

https://docs.docker.com/installation/amazon/

Step 8: Once connected to the instance, type sudo yum install -y docker ; sudo service docker start to install and start Docker

一旦你有了 docker 运行 你就可以看看这个 docker 示例 repo:

https://github.com/cpuguy83/docker-rails-dev-demo/

This is a demo app I created show how to develop and deploy a moderately complex application with docker.

See the Dockerfile for comments on the setup.

你也可以给http://devchat.tv/ruby-rogues/161-rr-docker-deploys-with-sam-saffron a listen. Sam and discourse for that matter are using docker and everything is open-source..

但这是一些相当高级的东西。因此,对于初学者,请查看 docker-rails-dev-demo 并阅读 documentation or the dockerbook.