Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 770 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 770 Bytes

redis-configure-host

Docker image that reconfigures the host for Redis.

Usage

Run one time manually:

$ docker run --privileged --rm -v /proc/sys/vm:/mnt/vm -v /sys/kernel/mm/transparent_hugepage:/mnt/transparent_hugepage interaction/redis-configure-host

Or as a service in your docker-compose.yml:

redis-configure-host:
  image: interaction/redis-configure-host
  privileged: true
  volumes:
    - /proc/sys/vm:/mnt/vm
    - /sys/kernel/mm/transparent_hugepage:/mnt/transparent_hugepage