Skip to content

Commit

Permalink
build: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
weiraneve committed Sep 10, 2023
1 parent b194a5a commit 86ae98c
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 前言
项目是基于Java微服务方案的商品秒杀系统。是前后端分离的项目,前端用React,后端为Java的微服务架构。

本项目版本迭代至1.0.2,欢迎各位多多交流。
本项目版本迭代至1.0.3,欢迎各位多多交流。

- [客户端前端服务器](https://github.com/weiraneve/seckill-front)
- [后台系统前端服务器](https://github.com/weiraneve/admin-manager)
Expand Down
2 changes: 1 addition & 1 deletion cloud-gateway/Dockerfile-gateway
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-gateway-1.0.2.jar /app/cloud-gateway.jar
COPY ./target/cloud-gateway-1.0.3.jar /app/cloud-gateway.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-manage/Dockerfile-manage
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-manage-1.0.2.jar /app/cloud-manage.jar
COPY ./target/cloud-manage-1.0.3.jar /app/cloud-manage.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Docket createRestApi() {
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("【微服务秒杀系统-后台】接口文档")
.version("1.0.2")
.version("1.0.3")
.termsOfServiceUrl("http://localhost:8205/uaa/login")
.description("秒杀系统微服务相关文档")
.build();
Expand Down
2 changes: 1 addition & 1 deletion cloud-mission/Dockerfile-mission
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-mission-1.0.2.jar /app/cloud-mission.jar
COPY ./target/cloud-mission-1.0.3.jar /app/cloud-mission.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Docket createRestApi() {
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("【微服务秒杀系统-秒杀】接口文档")
.version("1.0.2")
.version("1.0.3")
.termsOfServiceUrl("http://localhost:8205/uaa/login")
.description("秒杀系统微服务相关文档")
.build();
Expand Down
2 changes: 1 addition & 1 deletion cloud-monitor/Dockerfile-monitor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-monitor-1.0.2.jar /app/cloud-monitor.jar
COPY ./target/cloud-monitor-1.0.3.jar /app/cloud-monitor.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-uaa/Dockerfile-uaa
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-uaa-1.0.2.jar /app/cloud-uaa.jar
COPY ./target/cloud-uaa-1.0.3.jar /app/cloud-uaa.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Docket createRestApi() {
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("【微服务秒杀系统-用户统一登录与验证】接口文档")
.version("1.0.2")
.version("1.0.3")
.termsOfServiceUrl("http://localhost:8205/uaa/login")
.description("秒杀系统微服务相关文档")
.build();
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
context: ./cloud-mission
dockerfile: Dockerfile-mission
image: cloud-mission:1.0.2
image: cloud-mission:1.0.3
ports:
- "8888:8888"
environment:
Expand All @@ -25,7 +25,7 @@ services:
build:
context: ./cloud-uaa
dockerfile: Dockerfile-uaa
image: cloud-uaa:1.0.2
image: cloud-uaa:1.0.3
ports:
- "8088:8088"
environment:
Expand All @@ -43,7 +43,7 @@ services:
build:
context: ./cloud-manage
dockerfile: Dockerfile-manage
image: cloud-manage:1.0.2
image: cloud-manage:1.0.3
ports:
- "8070:8070"
environment:
Expand All @@ -61,7 +61,7 @@ services:
build:
context: ./cloud-gateway
dockerfile: Dockerfile-gateway
image: cloud-gateway:1.0.2
image: cloud-gateway:1.0.3
ports:
- "8205:8205"
restart: always
Expand All @@ -71,7 +71,7 @@ services:
build:
context: ./cloud-monitor
dockerfile: Dockerfile-monitor
image: cloud-monitor:1.0.2
image: cloud-monitor:1.0.3
ports:
- "8890:8890"
restart: always
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<swagger2-version>2.9.2</swagger2-version>
<admin-version>2.3.0</admin-version>
<admin-version>2.3.0</admin-version>
<seckillcloud.version>1.0.2</seckillcloud.version>
<seckillcloud.version>1.0.3</seckillcloud.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 86ae98c

Please sign in to comment.