Skip to content

Commit

Permalink
chore: Set ulimits for MySQL
Browse files Browse the repository at this point in the history
MySQL コンテナを実行するとやたらメモリを食うので制限をかけた
ref: docker-library/mysql#579 (comment)
  • Loading branch information
mugijiru committed Jun 2, 2023
1 parent 4983e8a commit 2361b51
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ services:
- "3306:3306"
volumes:
- ./db/mysql:/var/lib/mysql
ulimits:
nproc: 65535
nofile:
soft: 26677
hard: 46677

webdriver_chrome:
image: selenium/standalone-chrome-debug
Expand Down

0 comments on commit 2361b51

Please sign in to comment.