Skip to content

Commit

Permalink
docs: 📝 update README and build script docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbevan committed Feb 3, 2024
1 parent 8ef8892 commit b8b6c78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @nexeth/hardhat-docker

[Docker Hub](https://hub.docker.com/r/nexeth/hardhat)

![Docker Pulls](https://img.shields.io/docker/pulls/nexeth/hardhat)

A simple Docker Hardhat node to run local development and CI

## Quick Start
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"license": "MIT",
"scripts": {
"start": "npx hardhat node",
"docker:build": "docker build -t hardhat-docker .",
"docker:run": "docker run -p 8545:8545 -it --rm hardhat-docker",
"docker:push": "docker tag hardhat-docker nexeth/hardhat-docker:latest && docker push nexeth/hardhat-docker:latest"
"docker:build": "docker build -t nexeth/hardhat .",
"docker:run": "docker run -p 8545:8545 -it --rm nexeth/hardhat",
"docker:push": "docker tag nexeth/hardhat nexeth/hardhat:latest && docker push nexeth/hardhat:latest"
},
"devDependencies": {
"hardhat": "^2.19.5",
Expand Down

0 comments on commit b8b6c78

Please sign in to comment.