This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Name=Postman | |
StartupWMClass=Postman | |
Comment=Postman Desktop | |
GenericName=Postman for Linux | |
Exec=/usr/bin/Postman/Postman %U | |
Type=Application | |
Icon=/usr/bin/Postman/app/resources/app/assets/icon.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get Host IP Address | |
ip addr show docker0 | grep -Po 'inet \K[\d.]+' | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 AS base | |
WORKDIR /app | |
EXPOSE 80 | |
# DEBUG | |
FROM mcr.microsoft.com/dotnet/core/sdk:2.2 AS debug | |
WORKDIR /app |