9 lines
131 B
C
9 lines
131 B
C
|
#include<stdio.h>
|
||
|
#include<stdlib.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
system("docker run ubuntu:15.10 /bin/echo 'Hello world' ");
|
||
|
return 0;
|
||
|
}
|