FAQ

Common installation and operation questions for regular users.

I cannot open http://localhost:8543. What should I check?

  • Confirm container is running: docker ps.
  • Check container logs: docker logs -f my-epress-node.
  • Verify port 8543 is not occupied by another service.

What is stored in epress-data?

The Docker volume epress-data stores your node data persistently. Recreating the container will not erase data as long as the same volume is used.

How do I restart my node?

docker stop my-epress-node
docker start my-epress-node

How do I update to the latest image?

docker pull ghcr.io/epressworld/epress
docker stop my-epress-node
docker rm my-epress-node
docker run -d -p 8543:8543 -p 8544:8544 -v epress-data:/app/data --name my-epress-node ghcr.io/epressworld/epress

Can I change default ports?

Yes. Adjust the -p mappings in your Docker command. Keep the internal ports unchanged and only change the host-side ports if needed.