docker run \
-v /home/username/electrumx:/data \
-e DAEMON_URL=http://user:pass@host:port \
-e COIN=BitcoinSegwit \
-p 50002:50002 \
lukechilds/electrumx
it launches but then i recive several MemoryErrors
ERROR: Prefetching:ignoring unexpected exception
I don't know if i should ignore them or they are crucial for launching properly the server. It's the problem with RAM memory or just the available free space on disk?
I don't know much about ElectrumX, but MemoryError for software based on Python usually means there's not enough RAM to be allocated or you install 32-bit version of Python which only can allocate 4GB of RAM. I don't about details about error message though.