mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-08-29 00:44:19 +00:00
10 lines
232 B
Bash
10 lines
232 B
Bash
#!/bin/sh
|
|
|
|
docker run -it --rm \
|
|
--name my-maven-project \
|
|
-v ~/.m2:/opt/maven/localRepository \
|
|
-v "$PWD":/usr/src/mymaven \
|
|
-w /usr/src/mymaven \
|
|
registry.cn-hangzhou.aliyuncs.com/inrgihc/maven-aliyun:3.6.3-jdk-8 mvn clean
|
|
|