TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Hosted Docker-as-a-Service on SSDs for $5

387 点作者 edbyrne超过 11 年前

44 条评论

shykes超过 11 年前
Hi everyone, Docker maintainer here. Here&#x27;s my list of docker hosting services. Please correct me if I forgot one! I expect this list to get much, much longer in the next couple months.<p>* <a href="http://baremetal.io" rel="nofollow">http:&#x2F;&#x2F;baremetal.io</a><p>* <a href="http://digitalocean.com" rel="nofollow">http:&#x2F;&#x2F;digitalocean.com</a> (not docker-specific but they have a great docker image)<p>* <a href="http://orchardup.com" rel="nofollow">http:&#x2F;&#x2F;orchardup.com</a><p>* <a href="http://rackspace.com" rel="nofollow">http:&#x2F;&#x2F;rackspace.com</a> (not docker-specific but they have a great docker image)<p>* <a href="http://stackdock.com" rel="nofollow">http:&#x2F;&#x2F;stackdock.com</a><p>EDIT: sorted alphabetically to keep everyone happy :)
评论 #6693678 未加载
评论 #6692619 未加载
评论 #6693002 未加载
评论 #6694372 未加载
评论 #6692716 未加载
_lex超过 11 年前
Sounds like you took the best parts of digital ocean and are trying to push it as a platform with docker baked in. I like. It seems like you&#x27;re also trying to simplify using docker. I like even more.
评论 #6691835 未加载
Angostura超过 11 年前
I love the fact that you keep trying to define your own vocubulary &#x27;Deck&#x27; etc, but always have to explain it. Best to stick with the more eaily understood term, rather than invent your own, I think.<p>Unless you&#x27;re going to try and trademark them all.
评论 #6692046 未加载
评论 #6691908 未加载
评论 #6692649 未加载
评论 #6691842 未加载
terhechte超过 11 年前
I like the idea. Really cool. I&#x27;ve been researching docker a lot lately, and did most of my recent development on Core OS. I do have a question that wasn&#x27;t immediately obvious: Docker maintains that one should make a container out of every application so that instead of having to install apache + mysql + php in one Ubuntu environment, you&#x27;d create three docker containers (apache, mysql, memcache) and run them together and define the share settings, etc. Now here&#x27;s my question: It seems as if on Stardock, every container would be a seperate (at least) $5 instance? So if I want to run apache + mysql + memcached I&#x27;d need to cram them all into one docker container in order to have them on one machine? Or is it possible to use a $5 stardock system and run multiple containers on them, like on Core OS?<p>Thanks!
评论 #6693384 未加载
评论 #6693264 未加载
kmfrk超过 11 年前
&quot;Docker-as-a-Service&quot;, simple, easy-to-understand pricing. Love it.<p>This is my favourite Docker offer so far. I&#x27;ve been looking for something to replace dotCloud&#x27;s deprecated sandbox tier for just playing around, and it looks like this fits the bill.
panarky超过 11 年前
This is truly awesome, nice work!<p>I configured and launched a machine with redis and node in less than 5 minutes. Very cool.<p>How will you isolate instances from each other? My instance appears to have 24 GB of RAM and 12 cores, and it looks like I can use all of it in my instance.
评论 #6692297 未加载
评论 #6692295 未加载
评论 #6693921 未加载
antihero超过 11 年前
One thing that confuses me with Docker is that how do you configure your containers to communicate with each other.<p>So say I have a fancy Django image, and a fancy Postgres image.<p>How do I then have the Django one learn of the Postgres one&#x27;s IP, and then auths (somehow), and then communicates seperately.<p>Also, the recommended advice for &quot;production&quot; is to mount host directories for the PostgreSQL data directory. Doesn&#x27;t this rather defeat the point of a container (in that it&#x27;s self contained), and how does that even work with a DaaS like this? I&#x27;m pretty confused. Is there an idiomatic way in which to do this?<p>Do service registration&#x2F;discovery things for Docker already exist?
评论 #6693793 未加载
bfirsh超过 11 年前
We&#x27;re doing a similar thing called Orchard:<p><a href="https://orchardup.com" rel="nofollow">https:&#x2F;&#x2F;orchardup.com</a><p>We give you a standard Docker instance in the cloud - all the tools work exactly the same as they do locally. You can even instantly open a remote bash shell, like the now-famous Docker demo!
esamatti超过 11 年前
The big point of Docker for me is that I can build the container on my machine, run automated tests on it, play with it and then ship it to the production machines when I&#x27;m confident that it is working.<p>If you build the container on a service like this testing it is hard or in some cases even impossible. For example acceptance tests with Selenium.<p>Gemfile.lock and similar version binding tools help, but prebuild containers bring the deployment stability to whole new level and is the reason why I&#x27;m exited about Docker and containers in general.<p>Do they support prebuild containers?
评论 #6691782 未加载
shtylman超过 11 年前
What would be even better is to decouple the idea of a drop from the containers running it. What I like about container approaches is having &quot;machines&quot; I can run them on. So let&#x27;s say I make a &quot;www&quot; drop or several. I should then be able to fire up my containers into particular types of drops and have them started on those without having to think about the specifics. The benefit of this I&#x27;d that I only care about my container running and having some basic resource requirements and not so much the specific machine instance it is running on. I could even co-mingle different containers on types of &quot;machines&quot;. Also separating out disk resources from CPU and ram would be good. Maybe you do this already buy it wasn&#x27;t clear to me.
rmoriz超过 11 年前
&gt; We’re using dedicated because running virtual containers on virtual instances seems nuts to us.<p>but a traceroute points to AWS…
评论 #6692204 未加载
评论 #6692198 未加载
评论 #6693464 未加载
AhtiK超过 11 年前
Great initiative! One thing to be aware is that Docker is using LXC for containers and LXC relies on kernel isolation and cgroup limits. The concern is about the vulnerabilities.<p>It is comforting that Heroku is also using LXC for dynos. Would be interesting to know how much in-house adjustments to the kernel and LXC has been made to ensure the hardening.
评论 #6692451 未加载
chubot超过 11 年前
Just curious, how are people building Docker images these days? Doesn&#x27;t it only run on 64-bit Linux? I have a 32 bit Linux desktop and a Mac and haven&#x27;t gotten around to installing Docker. At work I have a 64 bit Linux desktop and it seemed to be extremely picky about the kernel version so I gave up.<p>Are people running Linux VMs on their Macs to build containers?<p>I like the idea of this service. But both the client side and the server side have to be easy. Unless I&#x27;m missing something it seems like they made the server side really easy, but the client side is still annoying.
评论 #6692578 未加载
评论 #6692575 未加载
boyter超过 11 年前
I love this idea, and want to try it but I have no experience with Docker (on the todo list).<p>I wanted to spin up an instance of Sphinx Search but no idea how to go about doing it.<p>Maybe creating a set of tutorials will help with this. I can think of two advantages. The first being customers like myself will love it. Second, similar to Linode and their tutorials it will drives a lot of traffic and establishes your reputation as docker experts. Will probably build a lot of back-links too as people link to your tutorials.
评论 #6692448 未加载
jaegerpicker超过 11 年前
This is pretty awesome. An api to automate deployments&#x2F;management&#x2F;monitoring would completely rock too.
erichocean超过 11 年前
How is private networking handled between Docker containers?<p>UPDATE: I&#x27;d also be interested to hear about Digital Ocean-style &quot;shared&quot; (but non-private) networking—basically, any network adaptor with a non-Internet routable IP address. ;)
pbhjpbhj超过 11 年前
Not being familiar with the subject basically it seems that:<p>Docker is a simple description of an internet server including the various services required (mysql, httpd, sshd, etc. - the bundle being call a <i>deck</i>).<p>It seems then you can create a server elsewhere (eg on your localhost), generate the docker description of that and use that description to fire up a server (either a VM or dedicated) using the service in the OP.<p>Am I close?<p>Could I use this to do general web hosting?<p>Edit: and looking at digitalocean.com it appears I can activate and deactivate the &quot;server&quot; at will, so I can have it online for an hour for testing and pay &lt; 1¢?
conradev超过 11 年前
This looks awesome! I currently have an AWS box for the same purpose, running a few of my docker containers. Will this support the ADD directive, or the ability to add custom files (config files) into containers?
lnanek2超过 11 年前
Wonder if they have an idle&#x2F;spin up time. Only their one instance plan is $5, but I know I have to buy more than one on heroku to get no idle&#x2F;spin up time - that or use hacks like constant pingers, etc.. This is important for when I&#x27;m doing experiments&#x2F;UI tests&#x2F;alpha tests&#x2F;submitting apps for reviews before they have any consistent traffic, but I don&#x27;t want them to occasionally get stuck on 15 second spin up times on requests.
评论 #6692442 未加载
guido4000超过 11 年前
I&#x27;m not sure about the pricing yet as I can run like 5 or 10 docker instances in one DigitalOcean VM costing 5 dollars per month.
评论 #6693088 未加载
nfm超过 11 年前
Looks cool. Here&#x27;s what I&#x27;d love to see: built-in git deployment (ie. take a Dockerfile, build an image from it, and then after a push add the latest source code to &#x2F;app and start new instances), and some kind of orchestration so you could run a number of app containers behind a load balancer container.
Matsta超过 11 年前
Hmm StackDock.com is hosted on a server at Hetzner in Germany.<p>I don&#x27;t 100% know if the containers themselves are hosted by Hetzner or not, but Hetzner is more of a budget provider than something you host production sites on.<p>I&#x27;ve heard many mixed review about their network and mostly their support which isn&#x27;t up to scratch. We&#x27;ll see what happens but from what I see, if someone decides to abuse the service, Hetzner might just take down the whole server without warning just like OVH do.<p><a href="http://www.hetzner.de/en/hosting/produkte_rootserver/px120ssd" rel="nofollow">http:&#x2F;&#x2F;www.hetzner.de&#x2F;en&#x2F;hosting&#x2F;produkte_rootserver&#x2F;px120ss...</a> (I&#x27;m guessing they are using something similar to this).It&#x27;s a pretty powerful and cheap server but if you search hard enough you can find something equivalent in the States for around the same price.
评论 #6695504 未加载
评论 #6695502 未加载
评论 #6693184 未加载
Touche超过 11 年前
Is the pricing for 1 dockerfile or unlimited dockerfiles?
评论 #6691851 未加载
arianvanp超过 11 年前
I Love the idea! really. I just don&#x27;t like all the UX yet. Some things feel ... off. It might be something personal. I&#x27;m not sure. But I guess it&#x27;s interesting to discuss. &quot;Drops are distilled Decks&quot; The words feel semantically mismatched for some reason. If I think &quot;Deck&quot;I don&#x27;t think &quot;Config&quot;. If I think &quot;Drop&quot; I don&#x27;think &quot;Deployable stuff&quot; and I don&#x27;t see how a &quot;Distilled deck&quot; is a &quot;drop&quot;. Also it feels odd that I can create a &quot;New deck&quot; in the &quot;instances&quot; section.<p>though adding &quot;cards&quot; to a &quot;deck&quot; sounds intuitive.<p>I&#x27;m trying to come up with better terminology. something with ships and containers...
评论 #6692784 未加载
kbar13超过 11 年前
IMO Labels&#x2F;tooltips should be added to the icons for the cards. Some of them, including the leaf (nodejs?) and the tree (nfi what that is) aren&#x27;t especially obvious.<p>Otherwise, cool!
评论 #6692064 未加载
dylanz超过 11 年前
Very cool, and I was waiting for something like this to be built out. Are you planning on having a command line tool to control your deployments?
评论 #6691514 未加载
theunixbeard超过 11 年前
I started the default instance with sinatra running, but where do you see the IP address to visit it via a web browser?
j-b超过 11 年前
Just signed up but the site now appears to be down, receiving &quot;We&#x27;re sorry, but something went wrong.&quot;
评论 #6693441 未加载
bionsuba超过 11 年前
You should do some A&#x2F;B tests to confirm, but I but the pricing table at the bottom was a little confusing because the price was not highlighted in any way, and the call to action was round when it is typically a rectangle.
tehwebguy超过 11 年前
Looks awesome! Anyone know if there are bandwidth &#x2F; throughput &#x2F; transfer charges?<p>Also, forgive my ignorance, but what would it take to be able to &quot;add containers&quot; in the same way that you can add dynos on Heroku?
MilesTeg超过 11 年前
The issue with linux containers is (or at least it used to be) that it is possible for a malicious user to &#x27;break out&#x27; of the container. Has this problem been solved?
knotty66超过 11 年前
Nice. Looking forward to seeing how this and all the other Docker based PAAS ecosystems like Flynn, Deis, Tsuru, Shipbuilder, CoreOS etc pan out.
评论 #6691706 未加载
shtylman超过 11 年前
Can I use a docker image I have already created?
Geee超过 11 年前
Is this production-ready and trusted? Who are these guys? I don&#x27;t want my apps to be hosted on a quick hack.
kohanz超过 11 年前
This looks like an awesome service. And the image on the site reminds me of Season 2 of The Wire - even better!
susi22超过 11 年前
Q: Do people have root on the containers?
评论 #6691616 未加载
samtp超过 11 年前
Cool service but your branding makes it look like you are affiliated with Canonical&#x2F;Ubuntu.
secure超过 11 年前
Excellent! Will play around with it soon. Thanks for offering this, and best wishes.
aurels超过 11 年前
I get a 500 error when logging in, am I the only one ?
gregf超过 11 年前
Like the idea, but would like to see hourly billing.
评论 #6693429 未加载
cvburgess超过 11 年前
This is fantastic!<p>Does anyone know where DO servers are located?
评论 #6692089 未加载
madisp超过 11 年前
Clicking on alpha&#x2F;deploy leads to 404 :(
jongleberry超过 11 年前
where are the servers hosted? AWS? US or EU?
matiasb超过 11 年前
Sounds great!