docker微服务镜像启动,增加sentinel

pull/3958/head
zhangdaiscott 2022-07-21 14:19:22 +08:00
parent 80e26d2b94
commit be7744a0da
2 changed files with 29 additions and 0 deletions

View File

@ -43,6 +43,20 @@ services:
container_name: jeecg-boot-gateway
hostname: jeecg-boot-gateway
jeecg-boot-sentinel:
restart: on-failure
build:
context: ./jeecg-cloud-sentinel
ports:
- 9000:9000
depends_on:
- jeecg-boot-nacos
- jeecg-boot-demo
- jeecg-boot-system
- jeecg-boot-gateway
container_name: jeecg-boot-sentinel
hostname: jeecg-boot-sentinel
# jeecg-boot-xxljob:
# build:
# context: ./jeecg-cloud-xxljob

View File

@ -0,0 +1,15 @@
FROM anapsix/alpine-java:8_server-jre_unlimited
MAINTAINER jeecgos@163.com
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN mkdir -p /jeecg-cloud-sentinel
WORKDIR /jeecg-cloud-sentinel
EXPOSE 8848
ADD ./target/jeecg-cloud-sentinel-3.3.0.jar ./
CMD sleep 5;java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-cloud-sentinel-3.3.0.jar