File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
docker/compose/movement-full-node/snapshot
docs/movement-node/run-fullnode Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
2
3
- movement-backup -db :
3
+ movement-restore -db :
4
4
image : restic/restic
5
5
container_name : movement-restore-db
6
6
environment :
7
7
- AWS_REGION=${AWS_REGION}
8
8
- RESTIC_PASSWORD=${RESTIC_PASSWORD}
9
9
- RESTIC_HOST=${RESTIC_HOST}
10
10
- SYNC_BUCKET=${SYNC_BUCKET}
11
-
12
- command : -r s3:s3.${AWS_REGION}.amazonaws.com/${SYNC_BUCKET}/restic_node_backup --host ${RESTIC_HOST} restore latest --target . --include /.movement/maptos --include /.movement/maptos-storage --include /.movement/movement-da-db --include /.movement/default_signer_address_whitelist
11
+ entrypoint : ["/bin/sh", "-c"]
12
+ command : >
13
+ "restic --no-lock -r s3:s3.${AWS_REGION}.amazonaws.com/${SYNC_BUCKET}/restic_node_backup
14
+ --host ${RESTIC_HOST} restore latest
15
+ --target .
16
+ --include /.movement/maptos
17
+ --include /.movement/maptos-storage
18
+ --include /.movement/movement-da-db
19
+ --include /.movement/default_signer_address_whitelist
20
+ -o s3.unsafe-anonymous-auth=true"
13
21
volumes :
14
22
- ${DOT_MOVEMENT_PATH}:/.movement
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Running a follower node locally allows you to evaluate performance on a given ne
12
12
13
13
## Container Revision
14
14
15
- The current container revision for installation is: ` CONTAINER_REV=09d2b26 -amd64 ` githut commit:` 09d2b26612a904fed4f12fd89eacc3de9993c50b `
15
+ The current container revision for installation is: ` CONTAINER_REV=4432cda -amd64 ` githut commit:` 4432cda5057c3e88bf876ac58c5a502b0e1a2b72 `
16
16
17
17
## Running a Movement Full Node
18
18
You can’t perform that action at this time.
0 commit comments