From 4e530a55c292253a7d2018d78f7647f05ad6de4e Mon Sep 17 00:00:00 2001 From: John Detter <4099508+jdetter@users.noreply.github.com> Date: Fri, 23 Aug 2024 13:16:18 -0500 Subject: [PATCH] Updated docker internal port to 3000 (#1626) Co-authored-by: John Detter --- crates/standalone/src/subcommands/start.rs | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/standalone/src/subcommands/start.rs b/crates/standalone/src/subcommands/start.rs index 2bd22f3c8f..0037c7b38a 100644 --- a/crates/standalone/src/subcommands/start.rs +++ b/crates/standalone/src/subcommands/start.rs @@ -25,7 +25,7 @@ impl ProgramMode { /// based on the mode we're running the program in. fn listen_addr(&self) -> &'static str { match self { - ProgramMode::Standalone => "0.0.0.0:80", + ProgramMode::Standalone => "0.0.0.0:3000", ProgramMode::CLI => "127.0.0.1:3000", } } diff --git a/docker-compose.yml b/docker-compose.yml index fa2ed749f6..ede0c42da9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,7 @@ services: - key_files:/etc/spacetimedb - /stdb ports: - - "3000:80" + - "3000:3000" # Tracy - "8086:8086" entrypoint: cargo watch -i flamegraphs -i log.conf --why -C crates/standalone -x 'run start'