mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	Increase OpenProject container resources
- Raised web service to 3 CPUs, 3–4 GB RAM, 2048 pids - Raised worker service to 2 CPUs, 2–3 GB RAM, 2048 pids - Increased cache mem_reservation to 512m - Adjusted formatting for proxy service Ref: https://chatgpt.com/share/68d513c1-8c10-800f-bf57-351754e3f5c2
This commit is contained in:
		| @@ -42,10 +42,10 @@ docker: | ||||
|       version:            "13"    # Update when available. No rolling release implemented | ||||
|       backup: | ||||
|         no_stop_required: true | ||||
|       cpus:               "1.0" | ||||
|       mem_reservation:    "1.5g" | ||||
|       mem_limit:          "2g" | ||||
|       pids_limit:         512 | ||||
|       cpus:               "3.0" | ||||
|       mem_reservation:    "3g" | ||||
|       mem_limit:          "4g" | ||||
|       pids_limit:         2048 | ||||
|     seeder: | ||||
|       name:               openproject-seeder | ||||
|       cpus:               "0.3" | ||||
| @@ -59,13 +59,13 @@ docker: | ||||
|       mem_limit:          "512m" | ||||
|       pids_limit:         256 | ||||
|     worker: | ||||
|       name:             openproject-worker | ||||
|       cpus:             "0.8" | ||||
|       mem_reservation:  "1g" | ||||
|       mem_limit:        "1.5g" | ||||
|       pids_limit:       512 | ||||
|       name:               openproject-worker | ||||
|       cpus:               "2.0" | ||||
|       mem_reservation:    "2g" | ||||
|       mem_limit:          "3g" | ||||
|       pids_limit:         2048 | ||||
|     proxy: | ||||
|       name:     openproject-proxy | ||||
|       name:               openproject-proxy | ||||
|       cpus:               "0.3" | ||||
|       mem_reservation:    "256m" | ||||
|       mem_limit:          "512m" | ||||
| @@ -75,7 +75,7 @@ docker: | ||||
|       image:              "" # If need a specific memcached image you have to define it here, otherwise the version from svc-db-memcached will be used | ||||
|       version:            "" # If need a specific memcached version you have to define it here, otherwise the version from svc-db-memcached will be used | ||||
|       cpus:               "0.3" | ||||
|       mem_reservation:    "256m" | ||||
|       mem_reservation:    "512m" | ||||
|       mem_limit:          "512m" | ||||
|       pids_limit:         256 | ||||
|      | ||||
|   | ||||
		Reference in New Issue
	
	Block a user