Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-oss
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-oss
Commits
39fa3625
Commit
39fa3625
authored
Sep 05, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oss docker配置
parent
b24ce8c6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
1 deletions
+34
-1
yd-oss-api/Dockerfile
+12
-0
yd-oss-api/pom.xml
+21
-0
yd-oss-api/src/main/resources/bootstrap.yml
+1
-1
No files found.
yd-oss-api/Dockerfile
0 → 100644
View file @
39fa3625
# 基础镜像
FROM
openjdk:8
# 维护人
LABEL
maintainer="zxm<2060197959@qq.com>"
# 创建目录
RUN
mkdir
-p
/home/app
# 拷贝项目jar - 使用可执行的 fat JAR
COPY
target/yd-oss-api-1.0-SNAPSHOT-exec.jar /home/app/yd-oss-api.jar
# 执行命令启动jar
ENTRYPOINT
["java", "-jar", "/home/app/yd-oss-api.jar"]
# 暴露端口
EXPOSE
9106
yd-oss-api/pom.xml
View file @
39fa3625
...
...
@@ -70,4 +70,25 @@
<artifactId>
yd-oss-service
</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
${springboot.version}
</version>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
<configuration>
<classifier>
exec
</classifier>
<mainClass>
com.yd.oss.api.OssApiApplication
</mainClass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
yd-oss-api/src/main/resources/bootstrap.yml
View file @
39fa3625
...
...
@@ -40,7 +40,7 @@ spring:
# 配置中心
config
:
# 命名空间id(此处不用public,因public初始化的空间, id为空)
namespace
:
c1e4cbcf-d8b7-4da9-a75a-7b75890fc390
namespace
:
b3b01715-eb85-4242-992a-5aff03d864d4
# nacos的ip地址和端口
server-addr
:
139.224.145.34:8848
# 这个就表示 在我们nacos命名空间id为 dev中 有一个data-id 为 demo-service.yml 的配置文件 读取这个里面的配置
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment