diff --git a/bin/argus b/bin/argus index d5b33fd..ca8e90f 100755 --- a/bin/argus +++ b/bin/argus @@ -572,9 +572,9 @@ def cmd_serve(args) -> None: print(f" Datasette: http://localhost:{datasette_port}") print() - # Start datasette in background + # Start datasette in background (bind to all interfaces for remote access) datasette_proc = subprocess.Popen( - ["datasette", str(db_path), "-p", str(datasette_port), "--cors"], + ["datasette", str(db_path), "-h", "0.0.0.0", "-p", str(datasette_port), "--cors"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL )