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 some outdated explanations in docker README #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
38 changes: 18 additions & 20 deletions README-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ These are the environment variables you can edit and their default values:
| `LOG_DIR` | `/app/logs` | Logging directory |
| `LOG_LEVEL` | `info` | Logging level set with AvalancheGo flag [`--log-level`](https://docs.avax.network/nodes/maintain/avalanchego-config-flags#--log-level-string-verbo-debug-trace-info-warn-error-fatal-off). |
| `NETWORK_ID` | `costwo` | The network id. The common ids are `flare \| costwo` |
| `AUTOCONFIGURE_PUBLIC_IP` | `0` | Set to `1` to autoconfigure `PUBLIC_IP`, skipped if PUBLIC_IP is set |
| `AUTOCONFIGURE_BOOTSTRAP` | `0` | Set to `1` to autoconfigure `BOOTSTRAP_IPS` and `BOOTSTRAP_IDS` |
| `AUTOCONFIGURE_PUBLIC_IP` | `1` | Set to `0` to manually configure `PUBLIC_IP`, skipped if PUBLIC_IP is set |
| `AUTOCONFIGURE_BOOTSTRAP` | `1` | Set to `0` to manually configure `BOOTSTRAP_IPS` and `BOOTSTRAP_IDS` |
| `AUTOCONFIGURE_BOOTSTRAP_ENDPOINT` | `https://coston2.flare.network/ext/info` | Endpoint used for [bootstrapping](https://docs.avax.network/nodes/maintain/avalanchego-config-flags#bootstrapping) when `AUTOCONFIGURE_BOOTSTRAP` is enabled. Possible values are `https://coston2.flare.network/ext/info` or `https://flare.flare.network/ext/info`. |
| `BOOTSTRAP_BEACON_CONNECTION_TIMEOUT` | `1m` | Set the duration value (eg. `45s` / `5m` / `1h`) for [--bootstrap-beacon-connection-timeout](https://docs.avax.network/nodes/maintain/avalanchego-config-flags#--bootstrap-beacon-connection-timeout-duration) AvalancheGo flag. |
| `EXTRA_ARGUMENTS` | | Extra arguments passed to flare binary |
Expand All @@ -72,13 +72,13 @@ The external API configuration is set to only respond to API calls so it offload
"coreth-admin-api-enabled": false,
"coreth-admin-api-dir": "",
"eth-apis": [
"public-eth",
"public-eth-filter",
"eth",
"eth-filter",
"net",
"web3",
"internal-public-eth",
"internal-public-blockchain",
"internal-public-transaction-pool"
"internal-eth",
"internal-blockchain",
"internal-transaction"
],
}
```
Expand All @@ -93,22 +93,20 @@ Similarly to the external API configuration, this one also responds to API calls
"coreth-admin-api-enabled": false,
"coreth-admin-api-dir": "",
"eth-apis": [
"public-eth",
"public-eth-filter",
"private-admin",
"public-debug",
"private-debug",
"eth",
"eth-filter",
"admin",
"debug",
"net",
"debug-tracer",
"web3",
"internal-public-eth",
"internal-public-blockchain",
"internal-public-transaction-pool",
"internal-public-tx-pool",
"internal-public-debug",
"internal-private-debug",
"internal-public-account",
"internal-private-personal"
"internal-eth",
"internal-blockchain",
"internal-transaction",
"internal-tx-pool",
"internal-debug",
"internal-account",
"internal-personal"
],
}
```
Expand Down