最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What is the most simple setup for a MEAN stack docker container to have the same config on OS X and DigitalOcean? -

programmeradmin2浏览0评论

I am playing around with a MEAN javascript project. (mongoDB + angular + sails.js + node.js) As I am offline a lot of the time, I'd like to keep my dev environment, running in a docker container, on OS X laptop, using boot2docker.

The 'production' (not actual production, just somewhere I deploy to to show it to friends) is a Digital Ocean droplet running Ubuntu as host and hopefully the same docker container.

I expect that the environment won't change very often and that I can continue using git push/pull to push just the code changes.

Do I need anything else other than what I described above? Do I need Vagrant, for example to deploy that docker container or is that an overkill? Can docker specify all all my needs, that is the right version of node.js, sails etc? Is there a ready made container I can reuse or modify rather than starting from scratch?

I am playing around with a MEAN javascript project. (mongoDB + angular + sails.js + node.js) As I am offline a lot of the time, I'd like to keep my dev environment, running in a docker container, on OS X laptop, using boot2docker.

The 'production' (not actual production, just somewhere I deploy to to show it to friends) is a Digital Ocean droplet running Ubuntu as host and hopefully the same docker container.

I expect that the environment won't change very often and that I can continue using git push/pull to push just the code changes.

Do I need anything else other than what I described above? Do I need Vagrant, for example to deploy that docker container or is that an overkill? Can docker specify all all my needs, that is the right version of node.js, sails etc? Is there a ready made container I can reuse or modify rather than starting from scratch?

Share Improve this question edited Apr 4, 2015 at 0:50 Travis Webb 15k9 gold badges59 silver badges111 bronze badges asked Mar 9, 2015 at 13:11 Lech RzedzickiLech Rzedzicki 4356 silver badges17 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

Answers to your questions:

Do I need anything else other than what I described above?

What you described sounds very reasonable. But keep in mind that you don't want to use one docker container, but rather one container per service. That means: one container running mongo, one container running node, and so on. That is a Docker best practice.

Do I need Vagrant, for example to deploy that docker container or is that an overkill?

It sounds like your rather simple setup does not require Vagrant. You can use Dockerfiles to build images that have everything you need installed. See the Dockerfile Reference and Dockerfile best Practices.

Can docker specify all my needs, that is the right version of node.js, sails etc?

Yes, every Docker image has a certain version of the service that will run inside the container. That's one of the points of using containers.

Is there a ready made container I can reuse or modify rather than starting from scratch?

Yes, there are many ready made containers to be found on the Docker Hub. Use these images as a base when writing your Dockerfiles to install anything additionally to what is supplied within the image on Docker Hub.

Also, check out Volumes to figure out how to handle source code in development.

发布评论

评论列表(0)

  1. 暂无评论