mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
5 lines
100 B
Bash
5 lines
100 B
Bash
#!/bin/sh
|
|
|
|
# Stop docker
|
|
if [ "`pgrep -f '/usr/bin/docker -d'`" != "" ]; then /sbin/stop docker; fi
|