mirror of
https://github.com/basicswap/basicswap.git
synced 2025-12-30 01:01:38 +01:00
docker: Add PIVX, Dash and Firo to isolated config
Changed pivx-params location to PIVX datadir. Still need a way to set the Firo wallet seed.
This commit is contained in:
11
docker/production/pivx/entrypoint.sh
Executable file
11
docker/production/pivx/entrypoint.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [[ "$1" == "pivx-cli" || "$1" == "pivx-tx" || "$1" == "pivxd" || "$1" == "test_pivx" ]]; then
|
||||
mkdir -p "$PIVX_DATA"
|
||||
|
||||
chown -h pivx:pivx /home/pivx/.pivx
|
||||
exec gosu pivx "$@"
|
||||
else
|
||||
exec "$@"
|
||||
fi
|
||||
Reference in New Issue
Block a user