This commit is contained in:
squidbear
2025-03-31 10:13:53 +02:00
parent 5947402c38
commit ecc9a7f709
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ services:
volumes:
- viction-mainnet-node-archive-leveldb-hash:/tomochain/data
- ./viction/scripts/download.node.sh:/download.sh
command: bash -c "/download.sh"
command: sh -c "/download.sh"
restart: "no"
profiles:
- manual

View File

@@ -8,7 +8,7 @@ services:
volumes:
- viction-mainnet-node-pruned-leveldb-hash:/tomochain/data
- ./viction/scripts/download.node.sh:/download.sh
command: bash -c "/download.sh"
command: sh -c "/download.sh"
restart: "no"
profiles:
- manual

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# Exit on error and show commands
set -ex