Created
December 9, 2016 05:18
-
-
Save kokuyouwind/7e69b04896923fa3bed16ecd529e26f3 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# スリープ時にVMの時計がずれることがあるため、ホストの時刻を反映するスクリプト | |
# @see https://forums.docker.com/t/docker-for-windows-should-resync-vm-time-when-computer-resumes-from-sleep/17825 | |
docker run --net=host --ipc=host --uts=host --pid=host --security-opt=seccomp=unconfined --privileged --rm alpine date -s "`date -u '+%Y-%m-%d %H:%M:%S'`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment