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'