I am trying to setup follower node by using docker compose:
docker compose --env-file .env \
--file docker/compose/movement-full-node/docker-compose.yml \
--file docker/compose/movement-full-node/docker-compose.follower.yml \
up -d
but the setup container giving me errors:
setup | 2025-01-31T08:04:44.885779Z INFO syncup: Running syncup with root "/.movement", glob {default_signer_address_whitelist,maptos,maptos-storage,suzuka-da-db}/**, and target S3("mainnet-l-sync-bucket-sync")
setup | 2025-01-31T08:04:44.885798Z INFO syncup: Creating pipelines for target S3("mainnet-l-sync-bucket-sync")
setup | 2025-01-31T08:04:44.889304Z INFO syncador::backend::s3::shared_bucket: Create client used region Some(Region("us-west-1"))
setup | 2025-01-31T08:04:44.889433Z INFO syncador::backend::s3::bucket_connection: Creating bucket mainnet-l-sync-bucket-sync
setup | 2025-01-31T08:04:55.685213Z INFO syncador::backend::s3::bucket_connection: Bucket exists: false
setup | 2025-01-31T08:04:55.685226Z INFO syncador::backend::s3::bucket_connection: Creating bucket mainnet-l-sync-bucket-sync
setup | 2025-01-31T08:04:55.685231Z INFO syncador::backend::s3::bucket_connection: Creating bucket with configuration CreateBucketConfiguration { location_constraint: Some(UsWest1), location: None, bucket: None }
setup | Error: Backend Error: dispatch failure
setup |
setup | Caused by:
setup | 0: dispatch failure
setup | 1: timeout
setup | 2: error trying to connect: HTTP connect timeout occurred after 3.1s
setup | 3: HTTP connect timeout occurred after 3.1s
setup | 4: timed out
setup exited with code 1
here is my .env
file:
CONTAINER_REV=baa83356a14d44fd4e8346e1eddfc184cebc17d3
DOT_MOVEMENT_PATH=./.movement
MAPTOS_CHAIN_ID=126
MOVEMENT_SYNC='follower::mainnet-l-sync-bucket-sync<=>{default_signer_address_whitelist,maptos,maptos-storage,suzuka-da-db}/**'
MOVEMENT_DA_LIGHT_NODE_CONNECTION_PROTOCOL=https
MOVEMENT_DA_LIGHT_NODE_CONNECTION_HOSTNAME=m1-da-light-node.mainnet
MOVEMENT_DA_LIGHT_NODE_CONNECTION_PORT=443
AWS_ACCESS_KEY_ID=myaccesskeyid
AWS_SECRET_ACCESS_KEY=mysecretaccesskey
AWS_DEFAULT_REGION=us-west-1
AWS_REGION=us-west-1