Skip to content

Commit

Permalink
added versions
Browse files Browse the repository at this point in the history
  • Loading branch information
faberf committed May 15, 2024
1 parent f3e5835 commit 321deef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
runs-on: ubuntu-latest # The type of runner that the job will run on.
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
VERSION: "1.0"
steps:
- name: Checkout code
uses: actions/checkout@v2 # Checks-out your repository under $GITHUB_WORKSPACE
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ Follow these steps to run the server using Docker:
.
```

You can check build_docker.sh for more examples. Alternatively you can use a prebuilt image from docker hub. Choose a tag from docker hub https://hub.docker.com/r/faberf/featureextractionserver/tags. For example, if you want to have pull an image from Docker hub with all plugins installed, use the following command:
You can check build_docker.sh for more examples. Alternatively you can use a prebuilt image from docker hub. Choose a tag from docker hub https://hub.docker.com/r/vitrivr/featureextractionserver/tags. For example, if you want to have pull an image from Docker hub with all plugins installed, use the following command:

```bash
docker pull faberf/featureextractionserver:full
docker pull vitrivr/featureextractionserver:full
```

3. **Run the Docker Image:**
Expand Down
3 changes: 2 additions & 1 deletion build_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ build_image() {
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--build-arg PLUGINPATH="$plugin_path" \
--build-arg CMD_ENTRYPOINT="$entrypoint" \
--tag "$DOCKER_USERNAME/featureextractionserver:${tag_suffix}" \
--tag "$DOCKER_USERNAME/featureextractionserver:${tag_suffix}-$VERSION" \
--tag "$DOCKER_USERNAME/featureextractionserver:${tag_suffix}-latest" \
--push \
.
}
Expand Down

0 comments on commit 321deef

Please sign in to comment.