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,19 +28,16 @@ services:
- 10350:10350/udp
volumes:
- ${AVALANCHE_FUJI_GO_ARCHIVE_LEVELDB_DATA:-avalanche-fuji-go-archive-leveldb}:/root/.avalanchego
- /slowdisk:/slowdisk
- .//fuji:/config
- /slowdisk:/slowdisk
entrypoint: [/avalanchego/build/avalanchego]
command:
- --chain-config-dir /config/archive
- --db-type=leveldb
- --http-host=
- --http-allowed-hosts=*
- --staking-port=10350
- --http-host=
- --public-ip=${IP}"
- --staking-port=10350
networks:
- chains
restart: unless-stopped
@@ -49,15 +47,14 @@ services:
image: nginx
environment:
PROXY_HOST: avalanche-fuji-archive-client
RPC_PORT: 9650
RPC_PATH: /ext/bc/C/rpc
WS_PORT: 9650
RPC_PORT: 9650
WS_PATH: /ext/bc/C/ws
WS_PORT: 9650
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.avalanche-fuji-go-archive-leveldb-stripprefix.stripprefix.prefixes=/avalanche-fuji-archive
@@ -84,4 +81,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,19 +28,16 @@ services:
- 10350:10350/udp
volumes:
- ${AVALANCHE_FUJI_GO_PRUNED_PEBBLEDB_DATA:-avalanche-fuji-go-pruned-pebbledb}:/root/.avalanchego
- /slowdisk:/slowdisk
- .//fuji:/config
- /slowdisk:/slowdisk
entrypoint: [/avalanchego/build/avalanchego]
command:
- --chain-config-dir /config/pruned
- --db-type=pebbledb
- --http-host=
- --http-allowed-hosts=*
- --staking-port=10350
- --http-host=
- --public-ip=${IP}"
- --staking-port=10350
networks:
- chains
restart: unless-stopped
@@ -49,15 +47,14 @@ services:
image: nginx
environment:
PROXY_HOST: avalanche-fuji-client
RPC_PORT: 9650
RPC_PATH: /ext/bc/C/rpc
WS_PORT: 9650
RPC_PORT: 9650
WS_PATH: /ext/bc/C/ws
WS_PORT: 9650
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.avalanche-fuji-go-pruned-pebbledb-stripprefix.stripprefix.prefixes=/avalanche-fuji
@@ -84,4 +81,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,19 +28,16 @@ services:
- 10929:10929/udp
volumes:
- ${AVALANCHE_MAINNET_GO_ARCHIVE_LEVELDB_DATA:-avalanche-mainnet-go-archive-leveldb}:/root/.avalanchego
- /slowdisk:/slowdisk
- .//mainnet:/config
- /slowdisk:/slowdisk
entrypoint: [/avalanchego/build/avalanchego]
command:
- --chain-config-dir /config/archive
- --db-type=leveldb
- --http-host=
- --http-allowed-hosts=*
- --staking-port=10929
- --http-host=
- --public-ip=${IP}"
- --staking-port=10929
networks:
- chains
restart: unless-stopped
@@ -49,15 +47,14 @@ services:
image: nginx
environment:
PROXY_HOST: avalanche-mainnet-archive-client
RPC_PORT: 9650
RPC_PATH: /ext/bc/C/rpc
WS_PORT: 9650
RPC_PORT: 9650
WS_PATH: /ext/bc/C/ws
WS_PORT: 9650
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.avalanche-mainnet-go-archive-leveldb-stripprefix.stripprefix.prefixes=/avalanche-mainnet-archive
@@ -84,4 +81,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,19 +28,16 @@ services:
- 10929:10929/udp
volumes:
- ${AVALANCHE_MAINNET_GO_PRUNED_PEBBLEDB_DATA:-avalanche-mainnet-go-pruned-pebbledb}:/root/.avalanchego
- /slowdisk:/slowdisk
- .//mainnet:/config
- /slowdisk:/slowdisk
entrypoint: [/avalanchego/build/avalanchego]
command:
- --chain-config-dir /config/pruned
- --db-type=pebbledb
- --http-host=
- --http-allowed-hosts=*
- --staking-port=10929
- --http-host=
- --public-ip=${IP}"
- --staking-port=10929
networks:
- chains
restart: unless-stopped
@@ -49,15 +47,14 @@ services:
image: nginx
environment:
PROXY_HOST: avalanche-mainnet-client
RPC_PORT: 9650
RPC_PATH: /ext/bc/C/rpc
WS_PORT: 9650
RPC_PORT: 9650
WS_PATH: /ext/bc/C/ws
WS_PORT: 9650
networks:
- chains
volumes:
- ./nginx-proxy:/etc/nginx/templates
labels:
- traefik.enable=true
- traefik.http.middlewares.avalanche-mainnet-go-pruned-pebbledb-stripprefix.stripprefix.prefixes=/avalanche-mainnet
@@ -84,4 +81,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
...