Skip to content

Commit

Permalink
Small fixes related to the performance optimizations and documentatio…
Browse files Browse the repository at this point in the history
…n update
  • Loading branch information
mdima committed Jun 3, 2024
1 parent a87be1a commit 54bb8c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Visual Trace Route
C# ASP.NET Core 8.0 Visual Trace Route Web Application
![Visual Trace Route Screenshot](https://github.com/mdima/traceroute/blob/master/screenshot.png?raw=true)
![Visual Trace Route Screenshot](https://github.com/mdima/traceroute/blob/master/SupportFiles/screenshot.png?raw=true)

Based on the original repository: https://github.com/bencorn/traceroute

Expand All @@ -15,10 +15,10 @@ Based on the original repository: https://github.com/bencorn/traceroute

### Running in Docker
You can use the following image to run Visual Trace Route locally:
michele73/traceroute:1.2.0
michele73/traceroute:1.2.1

Example:
docker run -d -p 8081:80 --name=traceroute --restart=always -v traecroute_logs:/app/logs michele73/traceroute:1.2.0
docker run -d -p 8081:80 --name=traceroute --restart=always -v traecroute_logs:/app/logs michele73/traceroute:1.2.1

The image repository is here: https://hub.docker.com/r/michele73/traceroute

Expand Down
Binary file added SupportFiles/Lighthouse Reports.xlsx
Binary file not shown.
File renamed without changes
2 changes: 1 addition & 1 deletion TraceRoute/Properties/PublishProfiles/Docker Public.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<DockerPublish>true</DockerPublish>
<RegistryUrl>https://registry.hub.docker.com/michele73</RegistryUrl>
<UserName>michele73</UserName>
<PublishImageTag>1.2.0</PublishImageTag>
<PublishImageTag>1.2.1</PublishImageTag>
<PublishProvider>ContainerRegistry</PublishProvider>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
Expand Down
2 changes: 1 addition & 1 deletion TraceRoute/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@
</div>
<script src="~/lib/jquery/jquery.min.js" asp-append-version="true"></script>
<script src="~/lib/twitter-bootstrap/js/bootstrap.min.js"></script>
<script src="~/lib/leaflet/leaflet.min.js" async onload="initMap();"></script>
<script src="~/lib/angular.js/angular.min.js"></script>
<script src="~/js/[email protected]" asp-append-version="true"></script>
<script src="~/js/[email protected]"></script>
<script src="~/js/[email protected]"></script>
<script src="~/lib/leaflet/leaflet.min.js" async onload="initMap();"></script>
@RenderSection("Scripts", required: false)
</body>
</html>

0 comments on commit 54bb8c7

Please sign in to comment.