forked from dockersamples/helloworld-demo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |