What to enter for prune=100GB for the Bitcoin node?

Hello @scooke

I don’t know much about bitcoin itself, but I can try to guide you.

User configuration

The configuration you shared has an error in the service name which is bitcoind

services:
  bitcoind:
    environment:
      - BITCOIN_PRUNE=102400

Interacting with your bitcoind container

Looking at the repository (found in the information tab), they give some basic command to interact with the container itself :

Note that in Runtipi case, your container name won’t just be bitcoind but will looks more like that : bitcoind_migrated-bitcoind-1*
So your commands will looks likes that
docker exec -it bitcoind_migrated-bitcoind-1

*You can check the name with docker ps

I hope this will help.