You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using this example in Gitpod connects to the public Solana `devnet` cluster. Gitpod does not support Docker so running a local cluster is not supported. Use the environment variable `CLUSTER` to choose a different Solana cluster.
36
+
Using this example in Gitpod connects to the public Solana `devnet` cluster. Use
37
+
the environment variable `CLUSTER` to choose a different Solana cluster.
31
38
32
39
Run the client to load and interact with the on-chain program:
33
40
```bash
34
41
$ npm run start
35
42
```
36
43
37
-
The remaining sections of this document point back to the non-Gitpod version of the README for more information. Just remember, using Docker or running a local cluster is not supported if you are using Gitpod.
44
+
The remaining sections of this document point back to the non-Gitpod version of
Rust](https://www.rust-lang.org/tools/install) for more details.
13
16
14
17
After installation, you should have `rustc`, `cargo`, & `rustup`. You should
15
18
also have `~/.cargo/bin` in your PATH environment variable.
@@ -20,52 +23,12 @@ Fetch the `npm` dependencies, including `@solana/web3.js`, by running:
20
23
$ npm install
21
24
```
22
25
23
-
### Docker
24
-
Docker runs as a service and it needs to be running before you can start the
25
-
Solana cluster. The exact start method depends on your system and how you
26
-
installed docker.
27
-
28
-
#### Install and Start Docker On Linux
29
-
The instructions to install Docker have changed over time. If you have
30
-
previously installed Docker, this will be a good time to update your system.
31
-
See [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) for a step-by-step walk-through. When complete, `sudo docker run hello-world` should confirm that everything works correctly.
32
-
33
-
To run Docker without typing `sudo` every time, take a look at Step 2 of [How To Install and Use Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04)
34
-
35
-
#### Install and Start Docker On A Mac
36
-
Docker provides a desktop application for Mac at [Docker Desktop for Mac](https://hub.docker.com/editions/community/docker-ce-desktop-mac/) with additional instructions here [Install Docker Desktop on Mac](https://docs.docker.com/docker-for-mac/install/). If you install the Docker Desktop app, you can skip the HomeBrew instructions below. If `docker run hello-world` works, you are ready to Start the local Solana cluster.
37
-
38
-
If you are using HomeBrew on a Mac, the commands are:
39
-
40
-
```bash
41
-
$ brew install docker
42
-
$ brew install docker-machine
43
-
# The next two commands to install virtualbox & create a machine may need a
44
-
# password. You may also need to address a System Preference setting and
0 commit comments