Skip to content

Commit

Permalink
fix: 忘记映射 4000 端口
Browse files Browse the repository at this point in the history
fix: Config 的构造器忘记给 clusterFileDirectory 赋值
  • Loading branch information
SALTWOOD committed May 25, 2024
1 parent 4bde459 commit 6d44739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CSharp-OpenBMCLAPI/Modules/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public Config()

this.refreshTokenTime = 1800000;
this.clusterWorkingDirectory = "./";
this.clusterWorkingDirectory = "./";
this.clusterFileDirectory = "./";
this.clusterVersion = "1.10.8";

this.HOST = "";
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ services:
csharp-openbmclapi:
image: csharp-openbmclapi
container_name: csharp-openbmclapi
ports:
- 4000:4000
volumes:
- ./working:/app

0 comments on commit 6d44739

Please sign in to comment.