From 50256ee528cc71aabd454812228189e4797a4fb3 Mon Sep 17 00:00:00 2001 From: Nick Ninov Date: Tue, 18 Aug 2026 08:43:44 +0300 Subject: [PATCH] docs: Docker Compose variables --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 488d194..f43b7f7 100644 --- a/README.md +++ b/README.md @@ -141,9 +141,8 @@ The compose file reads three variables from the environment. All of them have a | Variable | Default | Description | |-----|-----|-------------| | `STATUS_GO_COMMIT` | `develop` | The [`status-im/status-go`](https://github.com/status-im/status-go/) git ref (commit SHA, branch or tag) to build from. | -| `PLATFORM` | `linux/amd64` | The platform the image is built for. | -| `DATA_DIR` | `./data` | The folder on your machine where Status Backend keeps the accounts it creates. Use an absolute path, or one starting with `./` - a bare relative path is read as a Docker volume name. Required for a community [control node](./docs/community.md#control-node). | +| `STATUS_GO_PLATFORM` | `linux/amd64` | The platform the image is built for. | ``` -STATUS_GO_COMMIT=2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149 PLATFORM=linux/amd64 DATA_DIR=./data docker compose -f status_sdk/docker-compose.yaml up -d +STATUS_GO_COMMIT=2bee8b6a38cdc8f92d74e2dbb8c4e77fbbeea149 PLATFORM=linux/amd64 docker compose -f status_sdk/docker-compose.yaml up -d ```