Skip to content

Commit

Permalink
Deploy using binary package (#390)
Browse files Browse the repository at this point in the history
* Deploy using binary package

* Update README.md

* Resolve review

---------

Co-authored-by: Yingfeng <[email protected]>
  • Loading branch information
yuzhichang and yingfeng authored Dec 27, 2023
1 parent f71108f commit c0b316e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,22 @@ Supports a wide range of data types including strings, numerics, vectors, and mo

## 🎮 Get Started

### Docker pull
### Deploy Infinity database

#### Deploy using binary package on Linux x86_64

You can download the binary package (deb, rpm, or tgz) for your respective host operating system from https://github.com/infiniflow/infinity/releases. These packages are designed to be compatible with Linux x86_64 hosts that are no older than CentOS 7. They are statically linked, except for glibc. For example:

```bash
sudo rpm -i infinity-0.1.0-dev-x86_64.rpm
sudo systemctl start infinity
```

#### Deploy using Docker on Linux x86_64 and MacOS x86_64

```bash
docker pull infiniflow/infinity
docker run -d --name infinity -v /tmp/infinity/:/tmp/infinity --network=host infiniflow/infinity ./opt/bin/infinity

```


Expand Down

0 comments on commit c0b316e

Please sign in to comment.