Skip to content

Instantly share code, notes, and snippets.

@nevmerzhitsky
Created December 3, 2018 15:23
Show Gist options
  • Save nevmerzhitsky/c9228e4a9be77028142ab770f98d1893 to your computer and use it in GitHub Desktop.
Save nevmerzhitsky/c9228e4a9be77028142ab770f98d1893 to your computer and use it in GitHub Desktop.
Limit memory of Docker Engine via systemd slice (cgroup)

Original: https://stackoverflow.com/a/46557336/3155344

Put content to /etc/systemd/system/limit-docker-memory.slice file. Then add a line "cgroup-parent": "limit-docker-memory.slice" to /etc/docker/daemon.json. Then restart the docker: systemctl daemon-reload; systemctl restart docker

[Unit]
Description=Slice with MemoryLimit=700M for docker
Before=slices.target
[Slice]
MemoryAccounting=true
MemoryLimit=700M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment