-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Container #1531
Comments
Add functionality to add Dockerfile to dist folder in the same way as the heroku Procfile is created No docker integration to build image Closes angular-fullstack#1531
Add functionality to add Dockerfile to dist folder in the same way as the heroku Procfile is created No docker integration to build image Closes angular-fullstack#1531
Add functionality to add Dockerfile to dist folder in the same way as the heroku Procfile is created No docker integration to build image Closes angular-fullstack#1531
When I use Docker with my Angular Fullstack applications, I've been using this: https://gist.github.com/adambarthelson/ef57b7b90814c771be9a02381ef2182b This way it's compatible with Dockerhub's automated builds, and you're not having to manually push fresh images to your registry like a savage (which is extremely slow). An example
|
@adambarthelson refer to #1965 |
I was wondering what the policy towards docker is.
There is a heroku deployer (which I use) but recently I've beed using Docker and now https://www.tutum.co/ from the dist folder. The problem as I see it is that the standard docker Node container needs a great deal of interaction when doing an
npm install
so the whole create and destroy is a bit slow. I put together a similar container which does thenpm install
ahead of time https://hub.docker.com/r/jeremymarshall/angular-fullstack-dist/There is also a wider question of providing a mongo container and possibly using nginx as a reverse proxy ahead in a compose/tutum set
The text was updated successfully, but these errors were encountered: