Skip to content

Commit 94de528

Browse files
committed
docker: replace GHCR Workspace with public neo4j/neo4j-browser; map 7474 to 8080 and update docs
1 parent e6e216e commit 94de528

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,9 @@ Notes for agents:
341341
- Place `--json` before the subcommand to ensure the envelope applies to the whole invocation, e.g., `python -m dev.cli --json ready-queue`.
342342

343343

344-
## Neo4j in Docker with Workspace on port 7474
344+
## Neo4j in Docker with Browser UI on port 7474
345345

346-
We ship a docker-compose file that runs Neo4j and the official Neo4j Workspace UI. The UI is exposed on the classic port 7474, while the database Bolt port remains 7687.
346+
We ship a docker-compose file that runs Neo4j and the official Neo4j Browser UI (as a separate container). The UI is exposed on the classic port 7474, while the database Bolt port remains 7687.
347347

348348
Quick start:
349349

@@ -360,7 +360,7 @@ export NEO4J_HOST_IMPORT_DIR=${NEO4J_HOST_IMPORT_DIR:-./data/neo4j/import}
360360
# Start services in background
361361
docker compose -f docker-compose.neo4j.yml up -d
362362
363-
# Open the Workspace UI
363+
# Open the Browser UI
364364
# Login with user neo4j and the password above
365365
http://localhost:7474/
366366
```

docker-compose.neo4j.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@ services:
2828
retries: 10
2929
start_period: 20s
3030

31-
workspace:
32-
image: ghcr.io/neo4j/neo4j-workspace:latest
33-
container_name: scidk-neo4j-workspace
31+
browser:
32+
image: neo4j/neo4j-browser:latest
33+
container_name: scidk-neo4j-browser
3434
restart: unless-stopped
3535
depends_on:
3636
- neo4j
3737
environment:
38-
# Point Workspace at the Neo4j service over the compose network
38+
# Point Browser at the Neo4j service over the compose network (defaults shown in UI)
39+
- NEO4J_URL=bolt://neo4j:7687
3940
- NEO4J_URI=bolt://neo4j:7687
4041
ports:
41-
- "7474:80" # Workspace UI on the classic Neo4j port
42+
- "7474:8080" # Neo4j Browser UI on the classic port 7474

0 commit comments

Comments
 (0)