mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
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.
17 lines
537 B
Markdown
17 lines
537 B
Markdown
# 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.
|