Last active
October 18, 2024 03:44
-
-
Save NatLee/1caf52f2ab685e109f90494f31346e84 to your computer and use it in GitHub Desktop.
Synology DSM 7.x - A way to restart service of docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use new Synology CLI tool -> `synopkgctl` | |
#usage: synopkgctl <command> [...] | |
#command: | |
# enable <package> | |
# disable <package> | |
# setup <package> | |
# start <package> | |
# stop <package> | |
# teardown <package> | |
# check-startable <package> | |
sudo synopkgctl stop Docker | |
sudo synopkgctl start Docker | |
# Or, use script | |
/var/packages/Docker/scripts/start-stop-status stop | |
/var/packages/Docker/scripts/start-stop-status start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment