Fix Docker support

This commit is contained in:
Emi Simpson 2021-10-25 21:11:40 -04:00
parent 8d8a92a0b5
commit 6c04f718a0
Signed by: Emi
GPG key ID: A12F2C2FFDC3D847

View file

@ -111,7 +111,7 @@ async fn main() -> std::io::Result<()> {
.service(create_link) .service(create_link)
.default_service(web::to(not_found)) .default_service(web::to(not_found))
}) })
.bind("127.0.0.1:8080")? .bind("0.0.0.0:8080")?
.run() .run()
.await .await
} }