8 lines
154 B
Bash
8 lines
154 B
Bash
#!/bin/bash
|
|
|
|
# Upstream registry
|
|
cat > /etc/docker/daemon.json <<EOF
|
|
{ "storage-driver": "btrfs",
|
|
"registry-mirrors": ["http://192.168.0.121:5000"] }
|
|
EOF
|