This commit is contained in:
Para Dox
2025-04-12 12:57:50 +07:00
parent b3c69ea511
commit c241595dfd
206 changed files with 4708 additions and 5973 deletions

View File

@@ -1,3 +1,4 @@
---
# use at your own risk
services:
@@ -27,20 +28,17 @@ services:
- 10670:10670/udp
volumes:
- ${VICTION_MAINNET_NODE_ARCHIVE_LEVELDB_HASH_DATA:-viction-mainnet-node-archive-leveldb-hash}:/tomochain/data
- /slowdisk:/slowdisk
- .//mainnet:/config
- /slowdisk:/slowdisk
environment:
EXTIP: ${IP}
P2P_PORT: 10670
command:
- --gcmode=archive
- --rpcapi=eth,debug,net,db,admin,web3
- --syncmode=full
- --tomox
- --tomox.datadir=/tomochain/data/tomox
- --gcmode=archive
- --syncmode=full
- --rpcapi=eth,debug,net,db,admin,web3
networks:
- chains
restart: unless-stopped
@@ -50,15 +48,14 @@ services:
image: nginx
environment:
PROXY_HOST: viction-mainnet-archive-client
RPC_PORT: 8545
RPC_PATH:
WS_PORT: 8546
RPC_PORT: 8545
WS_PATH:
WS_PORT: 8546
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.viction-mainnet-node-archive-leveldb-hash-stripprefix.stripprefix.prefixes=/viction-mainnet-archive
@@ -85,4 +82,5 @@ x-upstreams:
methods:
disabled:
enabled:
- name: txpool_content # TODO: should be disabled for rollup nodes
- name: txpool_content # TODO: should be disabled for rollup nodes
...

View File

@@ -1,3 +1,4 @@
---
# use at your own risk
services:
@@ -27,20 +28,17 @@ services:
- 10670:10670/udp
volumes:
- ${VICTION_MAINNET_NODE_PRUNED_LEVELDB_HASH_DATA:-viction-mainnet-node-pruned-leveldb-hash}:/tomochain/data
- /slowdisk:/slowdisk
- .//mainnet:/config
- /slowdisk:/slowdisk
environment:
EXTIP: ${IP}
P2P_PORT: 10670
command:
- --gcmode=full
- --rpcapi=eth,debug,net,db,admin,web3
- --syncmode=full
- --tomox
- --tomox.datadir=/tomochain/data/tomox
- --gcmode=full
- --syncmode=full
- --rpcapi=eth,debug,net,db,admin,web3
networks:
- chains
restart: unless-stopped
@@ -50,15 +48,14 @@ services:
image: nginx
environment:
PROXY_HOST: viction-mainnet-client
RPC_PORT: 8545
RPC_PATH:
WS_PORT: 8546
RPC_PORT: 8545
WS_PATH:
WS_PORT: 8546
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.viction-mainnet-node-pruned-leveldb-hash-stripprefix.stripprefix.prefixes=/viction-mainnet
@@ -85,4 +82,5 @@ x-upstreams:
methods:
disabled:
enabled:
- name: txpool_content # TODO: should be disabled for rollup nodes
- name: txpool_content # TODO: should be disabled for rollup nodes
...

View File

@@ -1,3 +1,4 @@
---
# use at your own risk
services:
@@ -27,20 +28,17 @@ services:
- 10254:10254/udp
volumes:
- ${VICTION_TESTNET_NODE_ARCHIVE_LEVELDB_HASH_DATA:-viction-testnet-node-archive-leveldb-hash}:/tomochain/data
- /slowdisk:/slowdisk
- .//testnet:/config
- /slowdisk:/slowdisk
environment:
EXTIP: ${IP}
P2P_PORT: 10254
command:
- --gcmode=archive
- --rpcapi=eth,debug,net,db,admin,web3
- --syncmode=full
- --tomox
- --tomox.datadir=/tomochain/data/tomox
- --gcmode=archive
- --syncmode=full
- --rpcapi=eth,debug,net,db,admin,web3
networks:
- chains
restart: unless-stopped
@@ -50,15 +48,14 @@ services:
image: nginx
environment:
PROXY_HOST: viction-testnet-archive-client
RPC_PORT: 8545
RPC_PATH:
WS_PORT: 8546
RPC_PORT: 8545
WS_PATH:
WS_PORT: 8546
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.viction-testnet-node-archive-leveldb-hash-stripprefix.stripprefix.prefixes=/viction-testnet-archive
@@ -85,4 +82,5 @@ x-upstreams:
methods:
disabled:
enabled:
- name: txpool_content # TODO: should be disabled for rollup nodes
- name: txpool_content # TODO: should be disabled for rollup nodes
...

View File

@@ -1,3 +1,4 @@
---
# use at your own risk
services:
@@ -27,20 +28,17 @@ services:
- 10254:10254/udp
volumes:
- ${VICTION_TESTNET_NODE_PRUNED_LEVELDB_HASH_DATA:-viction-testnet-node-pruned-leveldb-hash}:/tomochain/data
- /slowdisk:/slowdisk
- .//testnet:/config
- /slowdisk:/slowdisk
environment:
EXTIP: ${IP}
P2P_PORT: 10254
command:
- --gcmode=full
- --rpcapi=eth,debug,net,db,admin,web3
- --syncmode=full
- --tomox
- --tomox.datadir=/tomochain/data/tomox
- --gcmode=full
- --syncmode=full
- --rpcapi=eth,debug,net,db,admin,web3
networks:
- chains
restart: unless-stopped
@@ -50,15 +48,14 @@ services:
image: nginx
environment:
PROXY_HOST: viction-testnet-client
RPC_PORT: 8545
RPC_PATH:
WS_PORT: 8546
RPC_PORT: 8545
WS_PATH:
WS_PORT: 8546
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.viction-testnet-node-pruned-leveldb-hash-stripprefix.stripprefix.prefixes=/viction-testnet
@@ -85,4 +82,5 @@ x-upstreams:
methods:
disabled:
enabled:
- name: txpool_content # TODO: should be disabled for rollup nodes
- name: txpool_content # TODO: should be disabled for rollup nodes
...