Created
April 10, 2019 12:12
-
-
Save alirezameskin/b8dcc4549014439a3a36ce7cf3dba6a0 to your computer and use it in GitHub Desktop.
This file contains 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
for { | |
_ <- pull("busybox:latest") | |
cntr <- run("busybox", "sh", "-c", "while :; do sleep 1; done") | |
res <- exec(cntr, "date") | |
_ <- kill(cntr) | |
_ <- remove(cntr) | |
} yield res | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment