add limits

This commit is contained in:
Gianni Carafa
2023-11-01 22:01:27 +01:00
parent b6345531d9
commit c08108f448
2 changed files with 15 additions and 2 deletions

View File

@@ -15,7 +15,12 @@ import (
func main() {
//os.Setenv("HTTP_PROXY", "http://localhost:3000")
if os.Getenv("PORT_PROXY") == "" {
os.Setenv("PORT_PROXY", "3000")
}
if os.Getenv("HTTP_PROXY") == "" {
os.Setenv("HTTP_PROXY", "http://127.0.0.1:"+os.Getenv("PORT_PROXY"))
}
proxyForkID := uintptr(0)
if runtime.GOOS == "darwin" {

View File

@@ -13,3 +13,11 @@ services:
ports:
- "2000:2000"
- "8080:3000"
deploy:
resources:
limits:
cpus: "0.50"
memory: 512M
reservations:
cpus: "0.25"
memory: 128M