Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ Alternatively, build images from a release tag:

```sh
git clone https://github.com/circlefin/arc-node.git && cd arc-node
git checkout v$ARC_VERSION
git checkout "$ARC_VERSION"
docker buildx bake \
--set "*.args.GIT_COMMIT_HASH=$(git rev-parse v$ARC_VERSION^{commit})" \
--set "*.args.GIT_VERSION=v$ARC_VERSION" \
--set "*.args.GIT_SHORT_HASH=$(git rev-parse --short v$ARC_VERSION^{commit})" \
--set "*.args.GIT_COMMIT_HASH=$(git rev-parse "${ARC_VERSION}^{commit}")" \
--set "*.args.GIT_VERSION=$ARC_VERSION" \
--set "*.args.GIT_SHORT_HASH=$(git rev-parse --short "${ARC_VERSION}^{commit}")" \
--set "arc-execution.tags=arc-execution:$ARC_VERSION" \
--set "arc-consensus.tags=arc-consensus:$ARC_VERSION"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/running-an-arc-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ mkdir -p "${ARC_HOME:-$HOME/.arc}"
Download `docker-compose.yml` into a working directory:

```sh
curl -O https://raw.githubusercontent.com/circlefin/arc-node/v${ARC_VERSION}/deployments/docker-compose.yml
curl -O https://raw.githubusercontent.com/circlefin/arc-node/${ARC_VERSION}/deployments/docker-compose.yml
```

### Start
Expand Down