Skip to content

Commit 114fb1f

Browse files
ksachdevaadsharma
authored andcommitted
fix: typo in the name in the explorer docker image
1 parent cd3784e commit 114fb1f

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/content/docs/visualization/lbug-explorer/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To access an existing Ladybug database, you can mount its path to the `/database
3636
docker run -p 8000:8000 \
3737
-v {path to the directory containing the database file}:/database \
3838
-e LBUG_FILE={database file name} \
39-
--rm lbugdb/explorer:latest
39+
--rm ghcr.io/ladybugdb/explorer:latest
4040
```
4141

4242
By mounting a local database file in Docker via `-v {path to the directory containing the database file}` and `-e LBUG_FILE={database file name}`, the changes done in the UI will persist to the local database file after the UI is shutdown. If the directory is mounted but the `LBUG_FILE` environment variable is not set, Ladybug Explorer will look for a file named `database.kz` in the mounted directory or create it if missing.
@@ -51,7 +51,7 @@ This is simply done by removing the `-v` flag in the example above. If no databa
5151
with `-v`, the server will be started with an empty database.
5252

5353
```bash
54-
docker run -p 8000:8000 --rm lbugdb/explorer:latest
54+
docker run -p 8000:8000 --rm ghcr.io/ladybugdb/explorer:latest
5555
```
5656

5757
Click on the `Datasets` tab on the top right corner and then: (i) you can select one of the bundled datasets
@@ -72,7 +72,7 @@ environment variable to `READ_ONLY` as shown below.
7272
docker run -p 8000:8000 \
7373
-v /absolute/path/to/database:/database \
7474
-e MODE=READ_ONLY \
75-
--rm lbugdb/explorer:latest
75+
--rm ghcr.io/ladybugdb/explorer:latest
7676
```
7777

7878
In read-only mode, you can still issue read queries (such as `MATCH`) and visualize the results,
@@ -88,7 +88,7 @@ you can do so by setting the `LBUG_IN_MEMORY` environment variable to true as fo
8888
```bash
8989
docker run -p 8000:8000 \
9090
-e LBUG_IN_MEMORY=true \
91-
--rm lbugdb/explorer:latest
91+
--rm ghcr.io/ladybugdb/explorer:latest
9292
```
9393

9494
You can think of an in-memory database as ephemeral, where the database exists purely in memory --
@@ -110,7 +110,7 @@ For example, to launch Ladybug Explorer with a buffer pool size of 1GB, you can
110110
docker run -p 8000:8000 \
111111
-v /absolute/path/to/database:/database \
112112
-e LBUG_BUFFER_POOL_SIZE=1073741824 \
113-
--rm lbugdb/explorer:latest
113+
--rm ghcr.io/ladybugdb/explorer:latest
114114
```
115115

116116
#### Accessing data files in the container
@@ -121,7 +121,7 @@ As mentioned above, Ladybug Explorer is launched from a Docker image. If you wan
121121
docker run -p 8000:8000 \
122122
-v /absolute/path/to/database:/database \
123123
-v /absolute/path/to/data:/data \
124-
--rm lbugdb/explorer:latest
124+
--rm ghcr.io/ladybugdb/explorer:latest
125125
```
126126

127127
With this configuration, the data directory you specify on your host machine will be accessible as `/data` in the container. For example, in the query panel, you can copy a CSV file into your database by running the following command:
@@ -167,7 +167,7 @@ To install the dev build, you can attach the `dev` tag to the docker command as
167167
```bash
168168
docker run -p 8000:8000 \
169169
-v /absolute/path/to/database:/database \
170-
--rm lbugdb/explorer:dev
170+
--rm ghcr.io/ladybugdb/explorer:dev
171171
```
172172

173173
The dev build of Ladybug Explorer is compatible with the nightly build of Ladybug, but it's not guaranteed to be stable

src/content/docs/visualization/lbug-explorer/query-panel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ from within the Docker container that's running Ladybug Explorer. In Docker Desk
101101
Once this is enabled, you should be able to run the following command and then open `http://localhost:8000` as normal.
102102
```bash
103103
# Run the following command to start Ladybug Explorer with host networking enabled
104-
docker run --net=host --rm lbugdb/explorer:latest
104+
docker run --net=host --rm ghcr.io/ladybugdb/explorer:latest
105105
```
106106
:::
107107

0 commit comments

Comments
 (0)