关于最近(01月24日后) GFW 大规模封禁 代理服务器IP 的一些猜测 __2个月前 (01-27) 本文最后更新于 2018年4月8日 20:24 可能会因为没有更新而失效。如已失效或需要修正,请留言!
分类: 好文分享
Goflyway 进阶教程:代理服务器自定义搭建HTTP伪装网站,降低被墙几率 __2周前 (03-28) 本文最后更新于 2018年3月28日 13:57 可能会因为没有更新而失效。如已失效或需要修正,请留言!
使用 宝塔面板(bt.cn) 快速部署 反向代理、镜像、自建CDN __3个月前 (01-15) 本文最后更新于 2018年1月20日 16:09 可能会因为没有更新而失效。如已失效或需要修正,请留言!
docker针对于系统工程师或者开发人员来说操作比较简单。一般我们习惯了对着黑黑的屏幕敲命令,docker pull,docker push,docker run,docker logs,docker ps等等。或者我们将常用的docker原生api封装到我们的shell脚本工具或者python脚本工具中去使用管理docker。然而对于部分用户,或者说非技术用户去使用docker难度其实不小。因此一个明了的可视化管理界面显得非常重要了。万物诞生总有其诞生的理由。可能只是为了服务某部分人。下面说一下两个比较常用的docker管理平台(dockerui和shiyard),以下都是经过本人亲测的,让我说说我的使用感受。
Dokcer使用技巧 提示 运行中的docker容器添加端口映射的几种办法 正文 方法一 1.首先获取容器的IP [root@docker-node1 ~]# docker inspect ‘b68f713d111d’ | grep IPAddress “SecondaryIPAddresses”: null, “IPAddress”: “172.17.0.2”, “IPAddress”: “172.17.0.2”, 2.在宿主机器上设置iptables转发端口
Simple management UI for Docker Installation How simple is it to deploy Portainer? Portainer installation using Docker Portainer runs as a lightweight Docker container (the Docker image weights less than 4MB) on a Docker engine or Swarm cluster.Therefore, you are one command away from running container on any machine using …
Simple management UI for Docker Demo A public demo is available at demo.portainer.io. Use the username admin and password tryportainer when prompted. Please note that the demo cluster is reset every 15min. Detailed overview Portainer gives you access to a central overview of your Docker host or Swarm cluster.From the dashboard, …
Estimated reading time: 10 minutes To get started with Docker CE on Ubuntu, make sure youmeet the prerequisites, theninstall Docker. Prerequisites Docker EE customers To install Docker Enterprise Edition (Docker EE), go toGet Docker EE for Ubuntuinstead of this topic. To learn more about Docker EE, seeDocker Enterprise Edition. …
Ubuntu 安装 Docker CE 准备工作 系统要求 Docker CE 支持以下版本的 Ubuntu操作系统: Zesty 17.04 Xenial 16.04 (LTS) Trusty 14.04 (LTS) Docker CE 可以安装在 64 位的 x86 平台或 ARM 平台上。Ubuntu 发行版中,LTS(Long-Term-Support)长期支持版本,会获得 5 年的升级维护支持,这样的版本会更稳定,因此在生产环境中推荐使用 LTS 版本。
Docker的网络模型 熟悉docker的人都知道,它有以下四种网络模式 host container none bridge 要理解Docker的网络,首先要发解的是Linux下面的network namespace。Linux Namespace是Linux提供的一种内核级别环境隔离的方法。其中network namepspace是六种隔离中的一种。