You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I'm trying to run a Docker container with --user 1000:1000 the btc_init script fails with /usr/local/bin/btc_init: line 13: /bitcoin/.bitcoin/bitcoin.conf: Permission denied error.
@nkuba please check the permissions for the target folder allow user id 1000 write access - you may want to mount a volume to know exactly what folder is being used: --volume /mnt/test/bitcoind-data:/bitcoin/.bitcoin
@tonytech83 please check your user id has write permissions to the folder and adjust as necessary - and you may want to specify the docker user if appropriate: ls -lh /mnt/test |grep bitcoind-data chmod u+w /mnt/test/bitcoind-data docker run --user 1000:1000 ...
When I'm trying to run a Docker container with
--user 1000:1000
thebtc_init
script fails with/usr/local/bin/btc_init: line 13: /bitcoin/.bitcoin/bitcoin.conf: Permission denied
error.Does it require some additional configuration?
Sample output:
The text was updated successfully, but these errors were encountered: