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

I am playing around with a MEAN javascript project.(mongoDB + angular + sails.js + node.js)As I am of

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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745405459a4626293.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信