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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Are you using docker?

1 点作者 gauravphoenix将近 10 年前
If yes, are you using it in production? Do you have security concerns?

1 comment

mattkrea将近 10 年前
Yes, I am using it and no, I am not worried.<p>If someone were to break through my webservice and then break out of the Docker container they&#x27;d be on an AWS Elastic Beanstalk container that doesn&#x27;t even have public keys for SSH on it nor a running SSH server (i.e. nothing of value). If there is the slightest hint that something is not right with one of these containers I just terminate the whole instance and replacements automatically spawn.<p>Since these are all deployed via continuous integration <i>I</i> do not even have SSH access to the instances--they are disposable.<p>And if anyone happens to be curious:<p>Commit -&gt; Travis-CI -&gt; S3 -&gt; Elastic Beanstalk staging environment<p>If staging goes well then we merge to another branch which ends up in an Elastic Beanstalk production environment.