Remove the threadpool directory under docker #1303 (#1315)

pull/1318/head
BigXin0109 1 year ago committed by GitHub
parent f041a780ef
commit ca256373c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
.gitignore vendored

@ -49,5 +49,5 @@ docs/.docusaurus
### Docker ###
docker/threadpool/conf
docker/threadpool/target
docker/conf
docker/target

@ -36,9 +36,9 @@ hippo4j/hippo4j-server
```shell
# 进入到 threadpool/server/bootstrap 工程路径下
mvn clean package -Dskip.spotless.apply=true
# 进入到 docker/threadpool 工程路径下
# 进入到 docker 工程路径下
# 默认打包是打包的 tag 是 latest
docker build -t hippo4j/hippo4j-server ../threadpool
docker build -t hippo4j/hippo4j-server ../docker
```
方式二:

@ -36,9 +36,9 @@ hippo4j/hippo4j-server
```shell
# 进入到 threadpool/server/bootstrap 工程路径下
mvn clean package -Dskip.spotless.apply=true
# 进入到 docker/threadpool 工程路径下
# 进入到 docker 工程路径下
# 默认打包是打包的 tag 是 latest
docker build -t hippo4j/hippo4j-server ../threadpool
docker build -t hippo4j/hippo4j-server ../docker
```
方式二:

@ -11,7 +11,7 @@
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<contextDir>${project.parent.parent.parent.basedir}/docker/threadpool</contextDir>
<contextDir>${project.parent.parent.parent.basedir}/docker</contextDir>
</properties>
<dependencies>
@ -70,7 +70,7 @@
</goals>
<configuration>
<encoding>UTF-8</encoding>
<outputDirectory>../../../docker/threadpool/conf/</outputDirectory>
<outputDirectory>../../../docker/conf/</outputDirectory>
<resources>
<resource>
<directory>conf</directory>
@ -91,7 +91,7 @@
</goals>
<configuration>
<encoding>UTF-8</encoding>
<outputDirectory>../../../docker/threadpool/target</outputDirectory>
<outputDirectory>../../../docker/target</outputDirectory>
<resources>
<resource>
<directory>target</directory>

Loading…
Cancel
Save