网站首页 站内搜索

搜索结果

查询Tags标签: Containers,共有 20条记录
  • 在无根的环境中基本设置和使用podman

    在无根的环境中基本设置和使用podman 基本设置 cgroup V2Linux内核功能允许用户限制普通用户容器可以使用的资源,如果使用cgroupV2启用了运行Podman的Linux发行版,则可能需要更改默认的OCI运行时。某些较旧的版本runc不适用于cgroupV2,必须切换到备用OCI运行时crun。 […

    2022/8/17 6:22:44 人评论 次浏览
  • docker + vscode 解决windows运行linux环境代码(以创建linux环境golang container为例)

    问题描述: 实验过程中clone的go项目中,makefile文件的命令是linux的命令,因此无法在windows终端直接运行。 问题思考: 如果不修改linux命令还想要运行,最直观的方法就是自己配置一个linux(但显然会比较麻烦,除非从长远考虑)。了解docker就知道,其实docker中的con…

    2022/1/23 7:08:25 人评论 次浏览
  • The Future of Docker Containers

    转载自 阿里云智能基础软件部-技术博客-The Future of Docker Containers A video of this talk is available. Docker在2013年开始使用 LXC 作为其基础技术,但它在过去六年中已经远不止于此,例如由docker主导的 libcontainer 项目,以及参与 OCI(Open Container Initia…

    2022/1/17 23:40:25 人评论 次浏览
  • The Future of Docker Containers

    转载自 阿里云智能基础软件部-技术博客-The Future of Docker Containers A video of this talk is available. Docker在2013年开始使用 LXC 作为其基础技术,但它在过去六年中已经远不止于此,例如由docker主导的 libcontainer 项目,以及参与 OCI(Open Container Initia…

    2022/1/17 23:40:25 人评论 次浏览
  • 【python基础】Sorted Containers

    sortedcontainers是一个用pure-python实现的拓展库,其内有SortedList、SortedDict、SortedSet等等,可以直接在力扣中使用 本文摘抄、总结于官方文档:http://www.grantjenks.com/docs/sortedcontainers/ Instruction Sorted Containers is an Apache2 licensed sorted c…

    2021/12/9 9:16:45 人评论 次浏览
  • 【python基础】Sorted Containers

    sortedcontainers是一个用pure-python实现的拓展库,其内有SortedList、SortedDict、SortedSet等等,可以直接在力扣中使用 本文摘抄、总结于官方文档:http://www.grantjenks.com/docs/sortedcontainers/ Instruction Sorted Containers is an Apache2 licensed sorted c…

    2021/12/9 9:16:45 人评论 次浏览
  • docker常用命令

    帮助 [root@localhost ubuntu]# docker --helpUsage: docker [OPTIONS] COMMANDA self-sufficient runtime for containersOptions:--config string Location of client config files (default "/root/.docker")-c, --context string Name of the con…

    2021/10/15 23:20:38 人评论 次浏览
  • docker常用命令

    帮助 [root@localhost ubuntu]# docker --helpUsage: docker [OPTIONS] COMMANDA self-sufficient runtime for containersOptions:--config string Location of client config files (default "/root/.docker")-c, --context string Name of the con…

    2021/10/15 23:20:38 人评论 次浏览
  • k8s探针的正确使用

    微信公众号:运维开发故事,作者:夏老师怎么配置Pod的liveness和readiness与startup探针 当你使用kubernetes的时候,有没有遇到过Pod在启动后一会就挂掉然后又重新启动这样的恶性循环?你有没有想过kubernetes是如何检测pod是否还存活?虽然容器已经启动,但是kubernete…

    2021/10/15 6:17:45 人评论 次浏览
  • k8s探针的正确使用

    微信公众号:运维开发故事,作者:夏老师怎么配置Pod的liveness和readiness与startup探针 当你使用kubernetes的时候,有没有遇到过Pod在启动后一会就挂掉然后又重新启动这样的恶性循环?你有没有想过kubernetes是如何检测pod是否还存活?虽然容器已经启动,但是kubernete…

    2021/10/15 6:17:45 人评论 次浏览
  • 【C++语法】STL

    cppreferenceContainerBuilt-in Types Abstract Data Typesdefined directly by C++ language defined by standard libratyrepersents computer hardware facilities usually dont implemented by computer hardwaree.g., int, array... e.g., vector, string...graph LR…

    2021/8/9 17:35:48 人评论 次浏览
  • 【C++语法】STL

    cppreferenceContainerBuilt-in Types Abstract Data Typesdefined directly by C++ language defined by standard libratyrepersents computer hardware facilities usually dont implemented by computer hardwaree.g., int, array... e.g., vector, string...graph LR…

    2021/8/9 17:35:48 人评论 次浏览
  • kubeadm docker镜像拉取脚本

    #!/bin/bashimages=($(kubeadm config images list))for image in ${images[*]};doecho -e "\e[7mdownload $image\e[0m"if [[ $image =~ coredns ]];thenimage_=coredns:${image##*v}echo $image_ $imagedocker pull registry.cn-hangzhou.aliyuncs.com/google…

    2021/7/18 6:07:35 人评论 次浏览
  • kubeadm docker镜像拉取脚本

    #!/bin/bashimages=($(kubeadm config images list))for image in ${images[*]};doecho -e "\e[7mdownload $image\e[0m"if [[ $image =~ coredns ]];thenimage_=coredns:${image##*v}echo $image_ $imagedocker pull registry.cn-hangzhou.aliyuncs.com/google…

    2021/7/18 6:07:35 人评论 次浏览
  • 记录——kubeadm集群node节点加入

    记录——kubeadm集群node节点加入 1. node节点关闭防火墙安全机制,映射等 2. 查看master的docker版本并安装与其相同版本。 docker version列出docker版本 yum list docker-ce --showduplicates|sort -r加速器配置 cat << EOF >> /etc/docker/daemon.json {…

    2021/6/8 1:33:09 人评论 次浏览
共20记录«上一页12下一页»
扫一扫关注最新编程教程