Skip to content

Commit

Permalink
upd docs
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Apr 26, 2024
1 parent a43d46e commit 4f0ac2b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions v1/content/getting-started/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ First, install the following required dependencies:
- libyajl
- libcurl
- libssl
- libcap

When using Debian/Ubuntu; _libuv1_, _libpcre2_, _libyajl_, _libcurl_ and _libssl_ can be installed using apt:
When using Debian/Ubuntu; _libuv1_, _libpcre2_, _libyajl_, _libcurl_, _libssl_ and _libcap_ can be installed using apt:

```bash
sudo apt-get install -y \
libuv1-dev \
libpcre2-dev \
libyajl-dev \
libcurl4-nss-dev \
libssl-dev
libssl-dev \
libcap-dev
```

Next, clone the ThingsDB project.
Expand Down
6 changes: 4 additions & 2 deletions v1/content/getting-started/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ Docker images of ThingsDB are available at [GitHub](https://github.com/thingsdb/

`ghcr.io/thingsdb/node:VERSION` _(Minimal ThingsDB image based on Alpine Linux.)_

`ghcr.io/thingsdb/node:gcloud-VERSION` _(Includes Google Cloud Utilities so ThingsDB can created backups in the Google Cloud.)_
`ghcr.io/thingsdb/node:gcloud-VERSION` _(Includes Google Cloud Utilities so ThingsDB can created backups in the Google Cloud. `-VERSION` is optional, otherwise the latest GCloud image will be used.)_

`ghcr.io/thingsdb/node:full-VERSION` _(Based on a Debian image with Google Cloud Utilities, Python3 and [py-timod](https://pypi.org/project/py-timod/) installed.)_
`ghcr.io/thingsdb/node:full-VERSION` _(Based on a Debian image with Google Cloud Utilities, Python3 and [py-timod](https://pypi.org/project/py-timod/) installed. `-VERSION` is optional, otherwise the latest Full image will be used.)_

`ghcr.io/thingsdb/node:arm64-VERSION` _(Minimal ThingsDB image based on Alpine Linux build for ARM hardware. `-VERSION` is optional, otherwise the latest ARM64 image will be used.)_

`ghcr.io/thingsdb/node:latest` _(Latest ThingsDB build from the `master` branch using a minimal Alpine Linux base image)_

Expand Down

0 comments on commit 4f0ac2b

Please sign in to comment.