From e6c9c3f952a1c3c3ead289e6b404328f8b12c2be Mon Sep 17 00:00:00 2001 From: 0xLucca <0xlucca.dev@gmail.com> Date: Wed, 15 Jan 2025 10:38:08 -0300 Subject: [PATCH] Apply suggestions --- .../onboarding-and-offboarding/set-up-validator.md | 4 ++-- variables.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/infrastructure/running-a-validator/onboarding-and-offboarding/set-up-validator.md b/infrastructure/running-a-validator/onboarding-and-offboarding/set-up-validator.md index 2a4a8b8d..ed8871c9 100644 --- a/infrastructure/running-a-validator/onboarding-and-offboarding/set-up-validator.md +++ b/infrastructure/running-a-validator/onboarding-and-offboarding/set-up-validator.md @@ -162,10 +162,10 @@ You can also manage Polkadot installations using Ansible. This approach can be b If you prefer using Docker or an OCI-compatible container runtime, the official Polkadot Docker image can be pulled directly from Docker Hub. -To pull the latest image, run the following command. Make sure to replace `INSERT_VERSION_NUMBER` with the appropriate version number, e.g. `v1.16.1` +To pull the latest stable image, run the following command: ```bash -docker pull parity/polkadot:INSERT_VERSION_NUMBER +docker pull parity/polkadot:{{ dependencies.docker_image_version }} ``` ### Build from Sources diff --git a/variables.yml b/variables.yml index 68437443..0397108a 100644 --- a/variables.yml +++ b/variables.yml @@ -23,4 +23,5 @@ dependencies: docker_image_version: 1.62.0 polkadot_sdk: repository_url: https://github.com/paritytech/polkadot-sdk - version: polkadot-stable2412 \ No newline at end of file + version: polkadot-stable2412 + docker_image_version: stable2412 \ No newline at end of file