Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions content/hosts/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ The command above stores everything inside the container, so removing the contai

```shell
mkdir -p ~/data/defradb ~/data/keys ~/data/lens
sudo chown -R 1003:1006 ~/data/defradb ~/data/keys ~/data/lens

docker run -d \
--name shinzo-host \
Expand All @@ -119,10 +118,6 @@ docker run -d \
ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
```

{% admonition(type="warning") %}
The container runs as UID/GID `1003:1006`, and a bind mount takes the ownership of the host directory. Without the `chown` above, the Host client can't write to the mounts and exits with a `permission denied` error on `.defra/keys`. This is a workaround until the image handles directory ownership on startup.
{% end %}

Production deployments also put an nginx reverse proxy in front for TLS and CORS. The repo has example Compose files you can adapt if you prefer to orchestrate with Compose.

## Build from source
Expand Down
Loading