mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 18:38:09 +01:00
Start isolated docker setup.
This commit is contained in:
11
docker/production/particl/entrypoint.sh
Executable file
11
docker/production/particl/entrypoint.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [[ "$1" == "particl-cli" || "$1" == "particl-tx" || "$1" == "particld" || "$1" == "test_particl" ]]; then
|
||||
mkdir -p "$PARTICL_DATA"
|
||||
|
||||
chown -h particl:particl /home/particl/.particl
|
||||
exec gosu particl "$@"
|
||||
else
|
||||
exec "$@"
|
||||
fi
|
||||
Reference in New Issue
Block a user