Skip to content

Commit

Permalink
Updated docker internal port to 3000 (#1626)
Browse files Browse the repository at this point in the history
Co-authored-by: John Detter <no-reply@boppygames.gg>
  • Loading branch information
jdetter and John Detter authored Aug 23, 2024
1 parent 9380eb6 commit 4e530a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/standalone/src/subcommands/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

2 comments on commit 4e530a5

@github-actions
Copy link

@github-actions github-actions bot commented on 4e530a5 Aug 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarking failed. Please check the workflow run for details.

@github-actions
Copy link

@github-actions github-actions bot commented on 4e530a5 Aug 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarking failed. Please check the workflow run for details.

Please sign in to comment.