Hi,
I just wrote an article on Docker and the movement around it in general. I thought it’s good to share it here .
Here’s the article: Docker, The Container War and Meteor
In the article, I’m talking about:
What is Docker?
Current development (war) around Docker
What’ll be in future
How to use Meteor with Docker
My view on Galaxy
What do you think about what’ll happen in the Docker community next?
How it’s affect us?
What do you think about Galaxy (in the context of Docker)?
7 Likes
Thanks for sharing! What are you thoughts on using docker for local dev environment ?
Hmm. may be we could create a production like env. locally. But we haven’t try that yet.
edit: May be you can use Docker Compose (earlier fig) for that
We are using docker-compose(aka Fig) for that already. It’s just velocity makes it practically impossible now
Hmm. What’s the velocity issue.
May be @sam could help you out.
sam
March 7, 2015, 12:42am
7
I’m trying my best to do that anyway
Would you have any code from your compose.yml and/or your Dockerfile to share? We are moving to Docker at my firm to run production, CI, and local development for our older php systems. We are moving to Meteor as our main application framework now and I would love to start it off in a container environment as well.
Thanks!
here you go
Dockerfile
# User for local dev
FROM app/base
RUN npm install -g orion-cli
# This forces package-catalog update. Should speed up further runs
RUN meteor show meteor-platform
Dockerfile.base
# Base image. Add anything unusual you need for your app here
FROM danieldent/meteor:1.0.4.1
docker-compose.yml
mongo:
image: mongo:2.6.4
ports:
- "27017"
volumes:
- ./data:/data
command: mongod --smallfiles
web:
build: .
ports:
This file has been truncated. show original
1 Like
Thanks so much for the gist!