diff --git a/Dockerfile b/Dockerfile index 867e83899..1a5ab3594 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN dotnet publish -c release -o /app -r linux-x64 --self-contained false --no-r # final stage/image FROM runtime-base WORKDIR /app -EXPOSE 8989 -ENV ASPNETCORE_URLS http://+:8989 +EXPOSE 8409 +ENV ASPNETCORE_URLS http://+:8409 COPY --from=build /app ./ ENTRYPOINT ["./ErsatzTV"] diff --git a/ErsatzTV/Properties/launchSettings.json b/ErsatzTV/Properties/launchSettings.json index 5ed1cc6ec..5e211dc1d 100644 --- a/ErsatzTV/Properties/launchSettings.json +++ b/ErsatzTV/Properties/launchSettings.json @@ -3,7 +3,7 @@ "ErsatzTV": { "commandName": "Project", "launchBrowser": false, - "applicationUrl": "http://0.0.0.0:8989", + "applicationUrl": "http://0.0.0.0:8409", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/ErsatzTV/Startup.cs b/ErsatzTV/Startup.cs index 88413cd7e..97a5b9cac 100644 --- a/ErsatzTV/Startup.cs +++ b/ErsatzTV/Startup.cs @@ -84,8 +84,8 @@ namespace ErsatzTV Log.Logger.Information( "Server will listen on port {Port} - try UI at {UI}", - 8989, - "http://localhost:8989"); + 8409, + "http://localhost:8409"); if (!Directory.Exists(FileSystemLayout.AppDataFolder)) { diff --git a/README.md b/README.md index 8c5bf2dad..ba76e270d 100644 --- a/README.md +++ b/README.md @@ -44,14 +44,14 @@ The easiest way to run ErsatzTV is with Docker: ``` docker run -d \ -e TZ=America/Chicago \ - -p 8989:8989 \ + -p 8409:8409 \ -v /path/to/appdata/config:/root/.local/share/ersatztv \ -v /path/to/shared/media:/path/to/shared/media:ro \ --restart unless-stopped \ jasongdove/ersatztv ``` -After running ErsatzTV for the first time, configure it by visiting the web UI at http://[address]:8989. +After running ErsatzTV for the first time, configure it by visiting the web UI at http://[address]:8409. ## Development diff --git a/docker-compose.yml b/docker-compose.yml index 8cc98e589..fd0e509b5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: build: context: . ports: - - "8989:80" + - "8409:80" volumes: - ersatztv:/root/.local/share/ersatztv #- /media/shared:/media/shared:ro