zhuyou commited on
Commit
86dce34
1 Parent(s): 534a98b
Files changed (6) hide show
  1. .idea/.gitignore +8 -0
  2. .idea/frps.iml +9 -0
  3. .idea/misc.xml +6 -0
  4. .idea/modules.xml +8 -0
  5. .idea/vcs.xml +6 -0
  6. Dockerfile +1 -1
.idea/.gitignore ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # 默认忽略的文件
2
+ /shelf/
3
+ /workspace.xml
4
+ # 基于编辑器的 HTTP 客户端请求
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
.idea/frps.iml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="JAVA_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+ <exclude-output />
5
+ <content url="file://$MODULE_DIR$" />
6
+ <orderEntry type="inheritedJdk" />
7
+ <orderEntry type="sourceFolder" forTests="false" />
8
+ </component>
9
+ </module>
.idea/misc.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK">
4
+ <output url="file://$PROJECT_DIR$/out" />
5
+ </component>
6
+ </project>
.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/frps.iml" filepath="$PROJECT_DIR$/.idea/frps.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
Dockerfile CHANGED
@@ -23,7 +23,7 @@ COPY frps.toml /app/frps.toml
23
  # 复制本地start.sh到/app目录,并给予执行权限
24
  COPY start.sh /app/start.sh
25
  RUN chmod +x /app/start.sh
26
-
27
 
28
  # 定义启动命令
29
  CMD ["/app/start.sh"]
 
23
  # 复制本地start.sh到/app目录,并给予执行权限
24
  COPY start.sh /app/start.sh
25
  RUN chmod +x /app/start.sh
26
+ RUN chmod +x /app/frps
27
 
28
  # 定义启动命令
29
  CMD ["/app/start.sh"]