摘要:
# It imports the PatternFill class from the openpyxl.styles module. from openpyxl.styles import PatternFill # It imports the colors class from the ope 阅读全文
摘要:
https://charts.bitnami.com/bitnami 阅读全文
摘要:
#!/bin/sh docker rm -f $(docker ps -qa) docker volume rm $(docker volume ls -q) cleanupdirs="/var/lib/etcd /etc/kubernetes /etc/cni /opt/cni /var/lib/ 阅读全文
摘要:
https://kuboard.cn/install/install-k8s.html#kuboard-spray 阅读全文
摘要:
docker部署mysql的问题:带有表及数据的mysql容器,打包成镜像迁移之后,数据丢失 这里给出一个解决方法: 思想:在创建镜像的时候就要修改数据存放的位置。然后启动它。然后正常的建立数据库,commit。这样就好啦!!! 创建镜像,编写Dockerfile: FROM mysql:lates 阅读全文
摘要:
命令使用格式: kubectl label nodes 节点名字 node-role.kubernetes.io/ROLES属性名称=或- kubectl label nodes 节点名字 node-role.kubernetes.io/ROLES属性名称=或- kubectl label node 阅读全文
摘要:
直接docker下载 docker pull yuanter/unblockneteasemusic:latest 运行unblockneteasemusic docker run -d --restart=always --name unblockneteasemusic -p 6780:8080 阅读全文
摘要:
apt-get install apache2-utils ab -n 100 -c 10 http://47.99.37.122:8100/blogs n为总数,c为并发数 webbench压测 wget http://soft.vpser.net/test/webbench/webbench-1 阅读全文
摘要:
docker run -d --name container_name \ //-d表示容器后台运行 --name指定容器名字 -p 7474:7474 -p 7687:7687 \ //映射容器的端口号到宿主机的端口号 -v /home/neo4j/data:/data \ //把容器内的数据目录 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文