Skip to content

Commit 10e4215

Browse files
committed
docs: Update docs for 0.8.4
1 parent b52cc01 commit 10e4215

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/a.installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ However, we strongly recommend **not** using it outside testing environments.
2020

2121
To use native binaries you need to download a bundle which is simply a ZIP file with all the necessary binaries that you'll ever need to develop on and deploy Skytable.
2222

23-
1. **First download the latest bundle** for your platform. You can find [download links on the releases page](https://github.com/skytable/skytable/releases/v0.8.3).
23+
1. **First download the latest bundle** for your platform. You can find [download links on the releases page](https://github.com/skytable/skytable/releases/v0.8.4).
2424
2. **Unzip the ZIP file**. You'll find the following binaries in the extracted archive:
2525
- `skyd`: This is the database server binary which when started runs as a daemon, serving requests
2626
- `skysh`: This is the Skytable shell and it provides a very helpful interactive REPL database client
@@ -72,7 +72,7 @@ The package will:
7272
2. **Start the container**:
7373
7474
```shell
75-
docker run -d --name skydb -p 2003:2003 skytable/skytable:v0.8.3
75+
docker run -d --name skydb -p 2003:2003 skytable/skytable:v0.8.4
7676
```
7777
7878
:::tip
@@ -85,14 +85,14 @@ message with the generated password.
8585
1. **Download the bundle**: To be able to run queries you need to download the bundle as described above
8686
2. **Create the data directory**: To ensure that our database is persistent and all our data doesn't vanish as soon as the container is terminated, we'll map the data directory to an actual directory on our local system.
8787
> **Note:** Create a folder called `skytable` in a convenient location. We recommend having a directory in `$HOME/docker-containers` where you can store the Skytable container's data and any other containers that you might use. It's a great way to keep things organized.
88-
3. **Create your configuration**: [Download this template file](https://raw.githubusercontent.com/skytable/skytable/v0.8.3/examples/config-files/template.yaml) and place it into the directory you created. Update the password with your `root` password of choice.
88+
3. **Create your configuration**: [Download this template file](https://raw.githubusercontent.com/skytable/skytable/v0.8.4/examples/config-files/template.yaml) and place it into the directory you created. Update the password with your `root` password of choice.
8989
4. **Start the container**:
9090

9191
```shell
9292
docker run -d --name skydb \
9393
-v $HOME/docker-containers/skytable:/var/lib/skytable \
9494
-p 2003:2003 \
95-
skytable/skytable:v0.8.3
95+
skytable/skytable:v0.8.4
9696
```
9797

9898
Explanation:

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ module.exports = {
125125
lastVersion: 'current',
126126
versions: {
127127
current: {
128-
label: '0.8.3',
128+
label: '0.8.4',
129129
path: '/',
130130
}
131131
},

0 commit comments

Comments
 (0)