Skip to content

Commit

Permalink
minor #396 Docker Compose: prevent MySQL's mbind errors (dunglas)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.12 branch.

Discussion
----------

Prevent `mbind: Operation not permitted` errors from polluting the logs.

Commits
-------

3bd1c31 Docker Compose: prevent MySQL's mbind errors
  • Loading branch information
Zales0123 authored Oct 21, 2022
2 parents 8f20155 + 3bd1c31 commit 2744c04
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ services:
# - ./docker/mysql/data:/var/lib/mysql:rw,delegated
ports:
- "${MYSQL_PORT:-3306}:3306"
cap_add:
- SYS_NICE # prevent "mbind: Operation not permitted" errors

node:
container_name: node
Expand Down

0 comments on commit 2744c04

Please sign in to comment.