码迷,mamicode.com
首页 >  
搜索关键字:container    ( 5967个结果
Docker学习(十二)- docker start/stop/restart 命令详解
作用 docker start:启动一个或多个已经被停止的容器 docker stop:停止一个或多个运行中的容器 docker restart:重启一个或多个容器 语法格式 docker start [OPTIONS] CONTAINER [CONTAINER...] docker stop [O ...
分类:其他好文   时间:2021-01-19 12:15:41    阅读次数:0
Vue_使用watch监听对象的三种方法
data: { datas: { a: 77, b: 86 } } 使用deep:true深层次监听 'datas':{ handler:function(newVal){ console.log(this.datas); }, deep:true } 监听某一个具体的属性 'datas.a':{ ...
分类:其他好文   时间:2021-01-18 10:45:24    阅读次数:0
docker 网络模式
一,Docker网络模式概述 Docker使用Linux桥接的方式,在宿主机虚拟一个Docker容器网桥(docker0),Docker启动一个容器时会根据Docker网桥的网段分配给容器一个IP地址,称为Container-IP,同时Docker网桥是每个容器的默认网关。因为在同一宿主机内的容器都 ...
分类:其他好文   时间:2021-01-14 11:18:14    阅读次数:0
Element drawer添加 滚动条 无法上下滚动
/*1.显示滚动条:当内容超出容器的时候,可以拖动:*/ .el-drawer__body { overflow: auto; } /*2.隐藏滚动条,太丑了*/ .el-drawer__container ::-webkit-scrollbar{ display: none; } ...
分类:其他好文   时间:2021-01-14 10:55:40    阅读次数:0
【js效果】留言版的实现(本地存储)
效果图: <!--联系我们开始 --> <div class="linkus container "> <div class="linkUsCon cl"> <div class="bd fl"> <div class="lines"> <span>姓名:</span> <input type="t ...
分类:Web程序   时间:2021-01-14 10:40:24    阅读次数:0
使用swiper完成轮播图
swiper:https://www.swiper.com.cn/usage/index.html 安装swiper cnpm i -S swiper 在功能组件中定义Swiper组件并设置好插槽 <template> <div class="swiper-container"> <div clas ...
分类:其他好文   时间:2021-01-13 11:31:56    阅读次数:0
HM后台(二)
一,home组件,侧边栏静态页面搭建, 1.1。去element-ui找组件 按需引入element组件 import Vue from 'vue' import { Button, Form, FormItem, Input, Message, Container, Header, Aside, ...
分类:其他好文   时间:2021-01-13 11:14:06    阅读次数:0
RHLE8 docker安装
yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo --RH ...
分类:其他好文   时间:2021-01-12 11:22:07    阅读次数:0
LXC/KVM虚拟化基本概念
LXC:其名称来自Linux软件容器(Linux Containers)的缩写.LXC利用cgroups与名称空间的功能,提供应用软件一个独立的操作系统环境。LXC不需要Hypervisor这个软件层,软件容器(Container)本身极为轻量化,提升了创建虚拟机的速度。严格来说不算是虚拟化技术,只 ...
分类:其他好文   时间:2021-01-11 10:40:12    阅读次数:0
具名插槽
<slot> 元素可以用一个特殊的特性 name 来进一步配置如何分发内容。多个插槽可以有不同的名字。具名插槽将匹配内容片段中有对应 slot 特性的元素。 # 子组件 <div class="container"> <header> <slot name="header"></slot> </he ...
分类:其他好文   时间:2021-01-08 11:46:49    阅读次数:0
5967条   上一页 1 ... 9 10 11 12 13 ... 597 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!