Skip to content

Commit

Permalink
fix docker networking
Browse files Browse the repository at this point in the history
  • Loading branch information
m1guelpf committed Nov 15, 2023
1 parent e69d79d commit 480921d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub async fn start(bot: Bot, config: AppConfig, bot_data: User, join_requests: J
.layer(Extension(config))
.layer(Extension(join_requests));

let addr = SocketAddr::from(([127, 0, 0, 1], 8000));
let addr = SocketAddr::from(([0, 0, 0, 0], 8000));
log::info!("Starting server at http://{addr}");

axum::Server::bind(&addr)
Expand Down

0 comments on commit 480921d

Please sign in to comment.