摘要:
【转载于https://blog.csdn.net/chenshuai199533/article/details/124791176】 keepalived是什么 keepalived是集群管理中保证集群高可用(HA)的一个服务软件,其功能类似于heartbeat,用来防止单点故障。 keepal 阅读全文
摘要:
[root@localhost jenkins_docker]# cat docker-compose.yml version: "3.1" services: jenkins: image: jenkins/jenkins:2.445 container_name: jenkins #随着dock 阅读全文
摘要:
主机ip:192.168.1.139 [root@localhost gitlab_docker]# cat docker-compose.yml version: '3.1' services: gitlab: image: 'gitlab/gitlab-ce:latest' container_ 阅读全文
摘要:
linux 程序状态查询脚本 [root@localhost SaasHealth]# cat otoctl #!/bin/bash source /etc/profile DOCKERCOMPOSE=/usr/local/bin/docker-compose SHELL_FOLDER=$(cd " 阅读全文
摘要:
version: '3' services: rabbitmq: image: rabbitmq:3.12.6-management container_name: rabbitmq_3_12 restart: always # 节点名 rabbit@rabbitserver,不然会去容器ID ho 阅读全文
摘要:
version: '3' services: # 模拟一个正常的mysql数据库 nginx: restart: always container_name: nginx image: nginx ports: - 80:80 - 443:443 volumes: - ./nginx/html:/u 阅读全文
摘要:
创建配置文件 [root@localhost SaasHealth]# cat databases/redis/conf/redis.conf protected-mode no appendonly yes requirepass wjht2014 docker-compose.yml versi 阅读全文
摘要:
version: '3' services: # 模拟一个正常的mysql数据库 mysql8: image: mysql:5.7 restart: always container_name: mysql ports: - 3306:3306 volumes: - ./databases/mysq 阅读全文
摘要:
apollo-1.9.2 docker-compose.yaml version: '3' services: # 模拟一个正常的mysql数据库 mysql8: image: mysql:5.7 restart: always container_name: mysql ports: - 3306 阅读全文