Skip to content

Commit fb12340

Browse files
authored
Merge pull request #19 from make-software/apple-m1-warning-notice
Added warning note about M1/M2 image issues.
2 parents 8f06e1a + 7a74887 commit fb12340

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

BUILD.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
To build the NCTL docker image run `docker build` as follows:
66

77
```bash
8-
docker build -f casper-nctl.Dockerfile --build-arg GITBRANCH=release-1.4.4 -t casper-nctl:v144 .
8+
docker build -f casper-nctl.Dockerfile --build-arg GITBRANCH=release-1.4.15 -t casper-nctl:v1415 .
99
```
1010

1111
The argument `GITBRANCH` indicates which branch from the `casper-node` repository docker
@@ -16,7 +16,7 @@ at the moment of writing these instructions. To keep other scripts independent o
1616
tag the image also as `latest` once the first build completes.
1717

1818
```bash
19-
docker tag casper-nctl:v144 casper-nctl:latest
19+
docker tag casper-nctl:v1415 casper-nctl:latest
2020
```
2121

2222
## Test the docker image

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Casper NCTL - Docker Container
22

3+
> **Warning**
4+
> Images published on Docker Hub are not stable on Apple computers with M1/M2 chips. We recommend that you build the docker image locally using the [BUILD](./BUILD.md) instructions.
5+
36
[NCTL](https://github.com/casper-network/casper-node/tree/release-1.4.3/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain.
47

58
## How to use this image

casper-nctl.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:focal
22

3-
ARG GITBRANCH=release-1.4.8
3+
ARG GITBRANCH=release-1.4.15
44

55
# DEBIAN_FRONTEND required for tzdata dependency install
66
RUN apt-get update \

0 commit comments

Comments
 (0)