forked from docker-library/hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.c
26 lines (25 loc) · 932 Bytes
/
hello.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
puts("Hello from Docker.\n\
This message shows that your installation appears to be working correctly.\n\
\n\
To generate this message, Docker took the following steps:\n\
1. The Docker client contacted the Docker daemon.\n\
2. The Docker daemon pulled the ihello-world image from the Docker Hub.\n\
3. The Docker daemon created a new container from that image which runs the\n\
executable that produces the output you are currently reading.\n\
4. The Docker daemon streamed that output to the Docker client, which sent it\n\
to your terminal.\n\
\n\
To try something more ambitious, you can run an Ubuntu container with:\n\
$ docker run -it ubuntu bash\n\
\n\
Share images, automate workflows, and more with a free Docker Hub account:\n\
https://hub.docker.com\n\
\n\
For more examples and ideas, visit:\n\
https://docs.docker.com/userguide/");
return 0;
}