1 Star 0 Fork 0

Drunkard / ToDoList

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

通过Docker Compose部署SpringBoot

下载源码

yum -y group install "Development Tools"
git clone https://gitee.com/drunkard_5/to-do-list.git
cd to-do-list

构建Jar包文件

创建一个存放Maven仓库的卷,使得Maven的依赖被缓存,可加快构建速度。

docker volume create --name ssadmin-maven-repo

使用 Maven Docker 镜像来编译和打包 Spring Boot 应用。

docker run -it --rm --name ssadmin-maven \
    -v ssadmin-maven-repo:/root/.m2 \
    -v "$PWD/20240407/demo20230927":/usr/src/mymaven \
    -w /usr/src/mymaven \
    maven:3.8.4-openjdk-17 mvn clean install package -e -Dmaven.test.skip=true

pom.xml文件中增加镜像地址


  <repositories>
		<repository>
			<id>huaweicloud</id>
			<name>huawei</name>
			<url>https://mirrors.huaweicloud.com/repository/maven/</url>
		</repository>
		<repository>
			<id>aliyunmaven</id>
			<name>aliyun</name>
			<url>https://maven.aliyun.com/repository/public</url>
		</repository>
	</repositories>
	<pluginRepositories>
		<pluginRepository>
			<id>public</id>
			<name>aliyun nexus</name>
			<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
			<releases>
				<enabled>true</enabled>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</pluginRepository>
	</pluginRepositories>

空文件

简介

一个初步的用户todo任务管理系统 展开 收起
Vue 等 4 种语言
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/drunkard_5/to-do-list.git
git@gitee.com:drunkard_5/to-do-list.git
drunkard_5
to-do-list
ToDoList
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891