Docker image for Swan Mainnet Node
425
This repository provides a Docker image for running a Swan Mainnet node. The image is built on the official nebulablock/swan-node-mainnet image and is designed to be easy to use and highly configurable.
docker run -d
-v /opt/swan:/opt/swan
-p 8545:8545
-e L1RPC=$L1_RPC
-e L1BEACON=$L1_Beacon_RPC
--name swan-node
nebulablock/swan-node-mainnet
This command will start a new container in detached mode, mapping the container's port 8545 to the host's port 8545 and persisting data in the /opt/swan directory.
The image supports the following environment variables:
L1RPC: The URL of the L1 RPC provider. L1BEACON: The URL of the L1 Beacon RPC provider. These variables can be set using the -e flag when running the container, as shown in the example command above.
The image uses a volume at /opt/swan to persist data between container restarts. This volume can be mounted using the -v flag when running the container, as shown in the example command above.
The image exposes port 8545 for RPC connections. This port can be mapped to a host port using the -p flag when running the container, as shown in the example command above.
Content type
Image
Digest
sha256:9ffbeb2fa…
Size
103 MB
Last updated
over 1 year ago
docker pull nebulablock/swan-node-mainnet