Skip to content

Commit

Permalink
saving some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
san-est committed Jun 12, 2024
1 parent 51b0d68 commit cbcf017
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions dockercompose-other.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3.8'

services:
geth:
image: YOUR_DOCKER_USERNAME/go-ethereum:latest
#ports were grabbed from the docker quick start in the README within https://github.com/ethereum/go-ethereum
ports:
- "8545:8545"
- "30303:30303"
volumes:
- ./data:/root/.ethereum
#running the node in dev mode, enabling RPC server, binding it to all availible networks, sets on which port RPC should listen to and availible APIs.
command: ["--dev", "--http", "--http.addr", "0.0.0.0", "--http.port", "8545", "--http.api", "eth,net,web3"]
7 changes: 7 additions & 0 deletions dockercompose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: '3.8'

services:
devnet:
image: ghcr.io/san-est/gk-webapp:latest
ports:
- "8080:8080"

0 comments on commit cbcf017

Please sign in to comment.