mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
6 lines
226 B
Bash
6 lines
226 B
Bash
echo "Ensure Docker config is set"
|
|
if [[ ! -f /etc/docker/daemon.json ]]; then
|
|
sudo mkdir -p /etc/docker
|
|
echo '{"log-driver":"json-file","log-opts":{"max-size":"10m","max-file":"5"}}' | sudo tee /etc/docker/daemon.json
|
|
fi
|