diff --git a/Server/README.md b/Server/README.md index e08f6d8..e089b31 100644 --- a/Server/README.md +++ b/Server/README.md @@ -68,7 +68,7 @@ docker-compose --profile production up -d ``` Once this command is executed, you will have a running database and server. -Access the server at: `http://localhost:8080`, or view the swagger UI at `http://localhost:8080/swagger/index.html` +Access the server at: `http://localhost:5295`, or view the swagger UI at `http://localhost:5295/swagger/index.html` #### `test` Deployment diff --git a/Server/SubterfugeRestApiServer/Properties/launchSettings.json b/Server/SubterfugeRestApiServer/Properties/launchSettings.json index 00eb580..b8906aa 100644 --- a/Server/SubterfugeRestApiServer/Properties/launchSettings.json +++ b/Server/SubterfugeRestApiServer/Properties/launchSettings.json @@ -41,7 +41,7 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": false, - "applicationUrl": "http://*:80", + "applicationUrl": "http://*:5295", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Docker" } diff --git a/docker-compose.yml b/docker-compose.yml index 91905e8..ededb98 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,9 +10,9 @@ services: volumes: - ".:/var/www" ports: - - 8080:8080 + - 5295:5295 environment: - - ASPNETCORE_URLS=http://*:8080 + - ASPNETCORE_URLS=http://*:5295 - DOTNET_ENVIRONMENT=Docker - ASPNETCORE_ENVIRONMENT=Docker db: