Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update readme (DEV-254) #1956

Merged
merged 1 commit into from Dec 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Expand Up @@ -61,7 +61,7 @@ To install, follow these steps:

```shell
brew tap AdoptOpenJDK/openjdk
brew cask install AdoptOpenJDK/openjdk/adoptopenjdk11
brew install AdoptOpenJDK/openjdk/adoptopenjdk11 --cask
```

To pin the version of Java, please add this environment variable to you startup script (bashrc, etc.):
Expand Down Expand Up @@ -107,6 +107,15 @@ make stack-up

Then try opening [http://localhost:3333/v2/resources/http%3A%2F%2Frdfh.ch%2F0803%2Fc5058f3a](http://localhost:3333/v2/resources/http%3A%2F%2Frdfh.ch%2F0803%2Fc5058f3a) in a web browser. You should see a response in JSON-LD describing a book.

On first installation, errors similar to the following can come up:
```
error decoding 'Volumes[0]': invalid spec: :/fuseki:delegated: empty section between colons
```
To solve this you need to deactivate Docker Compose V2. This can be done in Docker Desktop either by unchecking the "Use Docker Compose V2"-flag under "Preferences/General" or by running
```
docker-compose disable-v2
```

To shut down the Knora-Stack:

```shell
Expand Down