南通网站seo报价,app网站开发后台处理,天津电力建设公司招标网站,乐亭中关村建站快车一、docker安装 这里先采用在线安装#xff0c;利用docker hup下载基础镜像 1.环境版本要求
内核版本3.10及其以上 操作系统位数为64位 CPU架构为x86_64或amd64#xff08;目前也有别的支持#xff09; 内核开启并支持cgroup和命名空间
2.命令检查内核版本,本地环境为cent…一、docker安装 这里先采用在线安装利用docker hup下载基础镜像 1.环境版本要求
内核版本3.10及其以上 操作系统位数为64位 CPU架构为x86_64或amd64目前也有别的支持 内核开启并支持cgroup和命名空间
2.命令检查内核版本,本地环境为centos7
uname -r 1 3.更新yum
sudo yum update 1 4.添加Docker的yum源
sudo tee /etc/yum.repos.d/docker.repo -EOF [dockerrepo] nameDocker Repository baseurlhttps://yum.dockerproject.org/repo/main/centos/7/ enabled1 gpgcheck1 gpgkeyhttps://yum.dockerproject.org/gpg EOF 5.安装Docker软件包
sudo yum install docker-engine 1 6.设置Docker服务开机自启
sudo systemctl enable docker.service 1 7.启动Docker服务
sudo systemctl start docker 1 8.验证Docker是否安装成功
docker -v 1 9.查看镜像
[rootlocalhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED 1 2 10.删除docker sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-selinux \ docker-engine-selinux \ docker-engine 二、项目配置 springcloud版本
spring-cloud.versionFinchley.RELEASE/spring-cloud.version spring-boot-starter-parent:2.0.3 1.eureka 1)关键pom dependency groupIdorg.springframework.cloud/groupId artifactIdspring-cloud-starter-netflix-eureka-server/artifactId /dependency 2)启动类
SpringBootApplication EnableEurekaServer public class CommonserviceEurekaApplication extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(CommonserviceEurekaApplication.class, args); } Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(CommonserviceEurekaApplication.class); } } 3)配置文件关键参数
eureka.client.serviceUrl.defaultZonehttp://${eureka.instance.hostname}:${server.port}/eureka/ 1 2.config 1)关键pom !--注册发现-- dependency groupIdorg.springframework.cloud/groupId artifactIdspring-cloud-starter-netflix-eureka-client/artifactId /dependency !--配置中心-- dependency groupIdorg.springframework.cloud/groupId artifactIdspring-cloud-config-server/artifactId /dependency 2)启动类
SpringBootApplication EnableConfigServer EnableDiscoveryClient EnableEurekaClient public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } } 3)配置文件关键参数
#配置注册服务中心 eureka.client.serviceUrl.defaultZone http://${eureka-container-name}:${config-service-port}/eureka/ #设置为本地启动的方式而不是通过git spring.profiles.activenative #配置本地配置路径 spring.cloud.config.server.native.search-locations${local-config-path} 注意上面的${eureka-container-name}为eureka容器的别名或者id
三、生成镜像 1.项目eureka\config分别打包上传服务器 2.Dockerfile
FROM frolvlad/alpine-oraclejdk8:slim VOLUME /tmp ADD ROOT.jar app.jar #RUN bash -c touch /app.jar ENTRYPOINT [java,-Djava.security.egdfile:/dev/./urandom,-jar,/app.jar] EXPOSE ${PORT} 注意上面的${PORT} 应替换成eureka\config设置的不同容器声明端口 3.build 生成镜像
docker build -t orginaztion/service-image-name:tag 1 其中-t 标识镜像tag ,格式为所属库/服务镜像名:版本
四、运行镜像 其中localhost−∗−port替换为宿主机开放端口{localhost-*-port}替换为宿主机开放端口localhost−∗−port替换为宿主机开放端口{container-*-port}替换为容器服务端口 1.启动eureka
docker run --name eureka-service -d -it -p ${localhost-eureka-port}:${container-eureka-port} orginaztion/service-image-name:tag 1 注意 并且name对应config中的注册机参数的${eureka-container-name} 2.启动config
docker run --name config-server --link eureka-server:eureka-server-name-alias -d -it -p ${localhost-config-port}:${container-config-port} -v ${local-config-path}:${contain-config-path} orginaztion/service-image-name:tag 1 注意config依赖eureka,用–link链接 -v指定本地配置路径链接容器相应路径 3.访问config配置信息
http://${localhost}:${localhost-config-port}/${prefix-config-name}/test|dev|prod