Added example/Dockerfile.hello

This commit is contained in:
yhirose 2022-01-11 00:18:20 -05:00
parent 11e02e901c
commit 412ab5f063
3 changed files with 14 additions and 2 deletions

View file

@ -15,5 +15,5 @@ int main(void) {
res.set_content("Hello World!", "text/plain");
});
svr.listen("localhost", 8080);
svr.listen("0.0.0.0", 8080);
}