docker support

This commit is contained in:
2024-02-18 15:30:04 +01:00
parent cd2aa6a40f
commit db240b0bd0
3 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1 @@
target/

2
.gitignore vendored
View File

@@ -1 +1 @@
/target target/

View File

@@ -26,7 +26,7 @@ async fn main() -> std::io::Result<()> {
use actix_web::{App, HttpServer}; use actix_web::{App, HttpServer};
HttpServer::new(|| App::new().service(index)) HttpServer::new(|| App::new().service(index))
.bind(("0.0.0.0", 2137))? .bind(("192.168.0.10", 2137))?
.run() .run()
.await .await
} }