随笔分类 - DOCKER 相关
摘要:一、 创建L2TP+IPSEC VPN(可以供IOS系统使用) https://github.com/hwdsl2/docker-ipsec-vpn-server (both IPsec/L2TP and Cisco IPsec) docker run \ --name ipsec-vpn-serv
阅读全文
摘要:一、 安装CENTOS7两台,一台做master,一台做node Mast :192.168.140.101 Node: 192.168.140.102 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/
阅读全文
摘要:1 yum -y install nginx 2 vi /etc/nginx/conf.d/vhost.conf 3 server { 4 listen 80; 5 server_name 192.168.140.101; 6 location / { 7 proxy_pass http://127
阅读全文
摘要:一、 Kubectl create -f test.yaml遇到 No API token found for service account "default"错误 配置serviceaccounts openssl genrsa -out /etc/kubernetes/serviceaccou
阅读全文
摘要:使用docker安装非常方便,避免一步步的配置 ##查找包含zabbix proxy sqlite的镜像 docker search zabbix ##下载镜像(使用sqlite3比较轻便,也可以使用mysql的) docker pull docker.io/zabbix/zabbix-proxy-
阅读全文