Created
April 29, 2023 09:49
-
-
Save EvilFreelancer/9a2077b8613216b86e25cabe1756d137 to your computer and use it in GitHub Desktop.
Управление процессорным временем и памятью
This file contains hidden or 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
| version: "2.4" | |
| services: | |
| web: | |
| image: node:14 | |
| build: . | |
| ports: | |
| - "3000:3000" | |
| cpus: 0.5 | |
| cpu_shares: 73 | |
| cpu_quota: 50000 | |
| cpu_period: 20000 | |
| cpuset: "0,1" | |
| mem_limit: 1024m | |
| memswap_limit: 2048m | |
| mem_reservation: 512m | |
| database: | |
| image: postgres | |
| cpu_count: 2 | |
| cpu_percent: 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment