Skip to content

Commit 6d44739

Browse files
committed
fix: 忘记映射 4000 端口
fix: Config 的构造器忘记给 clusterFileDirectory 赋值
1 parent 4bde459 commit 6d44739

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CSharp-OpenBMCLAPI/Modules/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public Config()
7676

7777
this.refreshTokenTime = 1800000;
7878
this.clusterWorkingDirectory = "./";
79-
this.clusterWorkingDirectory = "./";
79+
this.clusterFileDirectory = "./";
8080
this.clusterVersion = "1.10.8";
8181

8282
this.HOST = "";

docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ services:
22
csharp-openbmclapi:
33
image: csharp-openbmclapi
44
container_name: csharp-openbmclapi
5+
ports:
6+
- 4000:4000
57
volumes:
68
- ./working:/app

0 commit comments

Comments
 (0)