Skip to content

Commit

Permalink
Removes symlink from docker instructions
Browse files Browse the repository at this point in the history
This sym link doesn't work. Replaced with an rsyc command.
  • Loading branch information
hev authored Dec 12, 2024
1 parent 93c9a62 commit 9eeed0a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions prism-image-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@ description.

## Install using docker compose
If you have a license key, you can easily setup Aerospike, AVS, and the prism-image-search
app using docker-compose. When using docker-compose, you'll need to place your images in `container-volumes/prism/images/static/data`
app using docker-compose. When using docker-compose, you'll need to place your images in `container-volumes/prism/images/static/data`.
You can not use a sym link. This command will copy jpgs from your `~/Pictures` directory.

```shell
ln -s ~/Pictures container-volumes/prism/images/static/data
rsync -av --include='*/' --include='*.jp*' --exclude='*' ~/Pictures ./aerospike-vector-search-examples/prism-image-search/container-volumes/prism/images/static/data
```

### 1. Build the prism image
Expand Down Expand Up @@ -152,4 +153,4 @@ restart and hence is ideal for development.

```shell
FLASK_ENV=development FLASK_DEBUG=1 python3 -m flask --app prism run --port 8080
```
```

0 comments on commit 9eeed0a

Please sign in to comment.