Merge pull request #624 from tgstation/Cyberboss-patch-1

Expose 5000 by default in docker image
This commit is contained in:
Jordan Brown
2018-09-11 16:29:25 -04:00
committed by GitHub
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ WORKDIR /src/src/Tgstation.Server.Host
RUN dotnet publish -c Release -o /app/lib/Default && mv /app/lib/Default/appsettings* /app
FROM microsoft/dotnet:2.1-aspnetcore-runtime
EXPOSE 80
EXPOSE 5000
WORKDIR /app
@@ -4,6 +4,13 @@
"MinimumPasswordLength": 15,
"GitHubAccessToken": null
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5000"
}
}
},
"Database": {
"DatabaseType": "SqlServer or MySQL or MariaDB",
"ConnectionString": "<Your connection string>",