Skip to content

Latest commit

 

History

History
68 lines (58 loc) · 1.83 KB

Docker.md

File metadata and controls

68 lines (58 loc) · 1.83 KB

Docker

Docker Image x86

Tip

Install Docker You can check this guide Install Docker Engine

Important

To use the pre-built Docker image for this course, you can pull the image from Docker Hub:

docker pull ackeeblockchain/school-of-solana:latest

Then run the following command. This will create new container.

docker run -it --name school-of-solana -p 8899:8899 -p 9900:9900 -p 8000:8000 -p 8080:8080 ackeeblockchain/school-of-solana:latest

Then visit the following url

http://localhost:8080/

When you want to continue work inside the Docker Image, use

docker start school-of-solana

and again visit the URL. To stop the Image, use

docker stop school-of-solana

It is also possible to start/stop the Imagre from the Docker Desktop GUI.

Docker Image ARM

Tip

Install Docker You can check this guide Install Docker Engine

Important

To use the pre-built Docker image for this course, you can pull the image from Docker Hub:

docker pull ackeeblockchain/school-of-solana-arm:latest

Then run the following command. This will create new container.

docker run -it --name school-of-solana -p 8899:8899 -p 9900:9900 -p 8000:8000 -p 8080:8080 ackeeblockchain/school-of-solana-arm:latest

Then visit the following url

http://localhost:8080/

When you want to continue work inside the Docker Image, use

docker start school-of-solana

and again visit the URL. To stop the Image, use

docker stop school-of-solana

It is also possible to start/stop the Imagre from the Docker Desktop GUI.