Programs must be written for people to read, and only incidentally for machines to execute.
- Abelson & Sussman, Structure and Interpretation of Computer Programs
https://github.com/HajraRafiq/react-chess
#Dockerhub image https://hub.docker.com/r/hajrarafiq/chess
npm install
npm start
open browser, http://localhost:3000
MIT
nerdctl build -t chess:v1 .
#For running the container in localhost
nerdctl run -p 8000:80 chess:v1
#To pull my container image
nerdctl pull hajrarafiq/chess:v1
#To run my chess image
nerdctl run hajrarafiq/chess:v1
nerdctl run -it hajrarafiq/chess:v1