-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix make podman work on fedora, apple silicone and windows OS (#74)
* fix podman compose script with podman machine running with applehv due to bugs with qemu and m3 mac * update all volume definitions so they match * remove bind.selinux as it does not seem to have any affect * Add updated readme for podman and add a hack for resolving the bind issues on mac * update readme * adde one line to readme.md * test new notation for information and warnings * test more with info sections * try to fix indend * Restructure the readme * update readme * some small changes to the README.md * use host.docker.internal as it seems to work on both windows and mac * change nginx internal domain to host.containers.internal * Differentiate on host and container domains for podman * bind problems also seems to be present on fedora. Renaming hack method in Makefile * update readme with known issue about bind mounts * fix bug in makefile * Make local frontend port configurable * Podman defaults localtest to 8000 Detect running local dev servers of app-frontend-react instead of static value * Update readme with guide to add hyper-v firewall rule if needed * big Z instead of small z * Update known issue in readme --------- Co-authored-by: tjololo <[email protected]>
- Loading branch information
Showing
16 changed files
with
244 additions
and
92 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$AppPort = 5005 | ||
$NetFirewallHyperVName = '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' | ||
|
||
Get-NetFirewallHyperVVMCreator | ||
Get-NetFirewallHyperVVMSetting -PolicyStore ActiveStore -Name $NetFirewallHyperVName | ||
Get-NetFirewallHyperVRule -VMCreatorId $NetFirewallHyperVName | ||
New-NetFirewallHyperVRule -Name Altinn3App -DisplayName "Altinn 3 Application" -Direction Inbound -VMCreatorId $NetFirewallHyperVName -Protocol TCP -LocalPorts $AppPort |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace LocalTest.Models; | ||
|
||
public struct LocalFrontendInfo | ||
{ | ||
public string Port { get; init; } | ||
public string Branch { get; init; } | ||
} |
Oops, something went wrong.