TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Deploy Java Apps With Docker

128 pointsby durdnalmost 12 years ago

4 comments

killing_timealmost 12 years ago
It&#x27;s probably also worth mentioning dokku, which is a simplified private PaaS built on top of Docker. It adds Heroku buildpacks (Ruby, NodeJS and Java right now) into the mix, and a git push-to-deploy model.<p>Because dokku has a concise and readable codebase, browsing the source is a good way to see one practical application of Docker, too.<p>I&#x27;ve set it up as a sandbox environment for developers at my company, and for our purposes it&#x27;s a much better fit than some of the more heavyweight private PaaS products. I&#x27;m really enjoying working with it!
评论 #5875904 未加载
AlexanderDhoorealmost 12 years ago
I played with Docker a bit yesterday. Containers really are awesome! VMs look almost stupid in comparison. I&#x27;ll be using it as much as I can. Being written in Golang doesn&#x27;t hurt either... Golang seems like a very good choice for this.
评论 #5875289 未加载
galesalmost 12 years ago
This is exactly what I&#x27;ve been looking for, a clear walk-through of Docker.
评论 #5874846 未加载
alinspiredalmost 12 years ago
get familiar with openvz - linux containers that allow to configure network interfaces, dynamic resources allocation, etc<p>Example from <a href="http:&#x2F;&#x2F;openvz.org&#x2F;Basic_operations_in_OpenVZ_environment" rel="nofollow">http:&#x2F;&#x2F;openvz.org&#x2F;Basic_operations_in_OpenVZ_environment</a>:<p>[host-node]# vzctl create 101 --ostemplate fedora-core-18-minimal [host-node]# vzctl set 101 --ipadd 10.1.2.3 --save [host-node]# vzctl set 101 --nameserver 10.0.2.1 --save [host-node]# vzctl start 101
评论 #5876628 未加载