Merge pull request #6182 from nozokare/fix-devcontainer-firewall-reset

fix: ensure firewall rules are re-applied on every DevContainer start
This commit is contained in:
ant-kurt 2025-08-26 17:28:18 -07:00 committed by GitHub
commit 8beb9b0c76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,5 +51,6 @@
},
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=delegated",
"workspaceFolder": "/workspace",
"postCreateCommand": "sudo /usr/local/bin/init-firewall.sh"
"postStartCommand": "sudo /usr/local/bin/init-firewall.sh",
"waitFor": "postStartCommand"
}