Files
xahaud/docs/Docker.md
Mike Ellery 755849115e Add dev docs generation to Jenkins:
Fixes: RIPD-1521

Switch to pure doxygen HTML for developer docs. Remove docca/boostbook
system. Convert consensus document to markdown. Add existing markdown
files to doxygen input set. Fix some image paths and scale images for
use with MD links. Rename/cleanup some files for consistency.
Add pipeline logic for windows slaves. Add ninja and parallel test run
option. Add make doc target build in build-and-test.sh. Cleanup README
files. Add nounity windows build. Add link to jenkins summary table.
Add rippled_classic build (win). Improve formatting of summary table.
2018-03-02 07:37:15 -08:00

537 B

Rippled Docker Image

Rippled has a continuous deployment pipeline that turns every git commit into a docker image for quick testing and deployment.

To run the tip of the latest release via docker:

$ docker run -P -v /srv/rippled/ ripple/rippled:latest

To run the tip of active development:

$ docker run -P -v /srv/rippled/ ripple/rippled:develop

Where /srv/rippled points to a directory containing a rippled.cfg and database files. By default, port 5005/tcp maps to the RPC port and 51235/udp to the peer port.