Skip to content

Commit

Permalink
Keep legacy volumes (#19)
Browse files Browse the repository at this point in the history
* Fix root volumes

* Fix holesky volume
  • Loading branch information
dappnodedev authored Sep 10, 2024
1 parent cdcbbc0 commit 28e7c1a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
5 changes: 0 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ services:
args:
UPSTREAM_VERSION: v1.14.8
STAKER_SCRIPTS_VERSION: v0.1.0
DATA_DIR: /root/.ethereum
volumes:
- geth:/root/.ethereum
environment:
EXTRA_OPTS: ""
SYNCMODE: snap
restart: unless-stopped
volumes:
geth: {}
5 changes: 5 additions & 0 deletions package_variants/holesky/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ services:
args:
NETWORK: holesky
P2P_PORT: 31403
DATA_DIR: /root/.ethereum
volumes:
- geth:/root/.ethereum
ports:
- 31403:31403/tcp
- 31403:31403/udp
image: geth.holesky-geth.dnp.dappnode.eth:0.1.2
volumes:
geth: {}
5 changes: 5 additions & 0 deletions package_variants/lukso/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ services:
args:
NETWORK: lukso
P2P_PORT: 33141
DATA_DIR: /lukso
volumes:
- lukso:/lukso
ports:
- 33141:33141/tcp
- 33141:33141/udp
image: geth.lukso-geth.dnp.dappnode.eth:0.1.3
volumes:
lukso: {}
5 changes: 5 additions & 0 deletions package_variants/mainnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ services:
args:
NETWORK: mainnet
P2P_PORT: 30403
DATA_DIR: /root/.ethereum
volumes:
- geth:/root/.ethereum
ports:
- 30403:30403/tcp
- 30403:30403/udp
image: geth.geth.dnp.dappnode.eth:0.1.44
volumes:
geth: {}
5 changes: 5 additions & 0 deletions package_variants/sepolia/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ services:
args:
NETWORK: sepolia
P2P_PORT: 35415
DATA_DIR: /sepolia
volumes:
- sepolia:/sepolia
ports:
- 35415:35415/tcp
- 35415:35415/udp
image: geth.sepolia-geth.dnp.dappnode.eth:0.1.3
volumes:
sepolia: {}

0 comments on commit 28e7c1a

Please sign in to comment.