Skip to content

Instantly share code, notes, and snippets.

@keyan1603
Last active September 5, 2024 19:33
Show Gist options
  • Save keyan1603/14b3ace391931a1cd11055e22f407c41 to your computer and use it in GitHub Desktop.
Save keyan1603/14b3ace391931a1cd11055e22f407c41 to your computer and use it in GitHub Desktop.
Prevent App pool recycle in Docker environment
RUN Import-Module WebAdministration; `
Set-ItemProperty "IIS:\AppPools\DefaultAppPool" -Name Recycling.periodicRestart.time -Value 0.00:00:00; `
Set-ItemProperty "IIS:\AppPools\DefaultAppPool" -Name Recycling.periodicRestart.requests -Value 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment