Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/ripple/rippled.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1217,8 +1217,8 @@ advisory_delete=0

# This needs to be an absolute directory reference, not a relative one.
# Modify this value as required.
[debug_logfile]
/var/log/rippled/debug.log
#[debug_logfile]
#/var/log/rippled/debug.log

[sntp_servers]
time.windows.com
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:

rippled:
container_name: rippled
image: flarefoundation/rippled:2.6.0
image: flarefoundation/rippled:2.6.1-dless
restart: on-failure:3
environment:
- TZ=Europe/London
Expand All @@ -52,9 +52,9 @@ services:
- ${BIND_IP}:11233:51233 # port_ws_public
- ${BIND_IP}:10051:50051 # port_grpc
volumes:
- ripple-testnet-data:/opt/ripple/.ripple/db
- ./config-testnet/ripple/rippled.conf:/opt/ripple/.ripple/rippled.conf
- ./config-testnet/ripple/validators.txt:/opt/ripple/.ripple/validators.txt
- ripple-testnet-data:/opt/ripple/.ripple/db:rw
- ./config-testnet/ripple/rippled.conf:/opt/ripple/.ripple/rippled.conf:ro
- ./config-testnet/ripple/validators.txt:/opt/ripple/.ripple/validators.txt:ro

algorand:
container_name: algorand
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:

rippled:
container_name: rippled
image: flarefoundation/rippled:2.6.0
image: flarefoundation/rippled:2.6.1-dless
restart: on-failure:3
environment:
- TZ=Europe/London
Expand All @@ -49,9 +49,9 @@ services:
- ${BIND_IP}:51233:51233 # port_ws_public
- ${BIND_IP}:50051:50051 # port_grpc
volumes:
- ripple-data:/opt/ripple/.ripple/db
- ./config/ripple/rippled.conf:/opt/ripple/.ripple/rippled.conf
- ./config/ripple/validators.txt:/opt/ripple/.ripple/validators.txt
- ripple-data:/opt/ripple/.ripple/db:rw
- ./config/ripple/rippled.conf:/opt/ripple/.ripple/rippled.conf:ro
- ./config/ripple/validators.txt:/opt/ripple/.ripple/validators.txt:ro

algorand:
container_name: algorand
Expand Down
12 changes: 5 additions & 7 deletions images/rippled/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.3-labs
FROM debian:12@sha256:731dd1380d6a8d170a695dbeb17fe0eade0e1c29f654cf0a3a07f372191c3f4b as build
FROM debian:bookworm@sha256:93492d1405a072c9d3b89110490e330e0b7eb37754cafc9520908b7fe6873f5f as build

ARG VERSION=2.6.0
ARG VERSION=2.6.1

ENV DEBIAN_FRONTEND="noninteractive" TZ="Europe/London"

Expand All @@ -15,14 +15,12 @@ RUN <<-EOF
cmake
EOF

# To generate requirements.txt, run:
# echo "conan" > requirements.in
# pip-compile --generate-hashes --output-file=requirements.txt requirements.in
COPY requirements.txt /tmp/requirements.txt

RUN <<-EOF
set -e
echo "conan" > /tmp/requirements.in
python3 -m venv /opt/conan_env
/opt/conan_env/bin/python -m pip install pip-tools
/opt/conan_env/bin/pip-compile --generate-hashes --output-file=/tmp/requirements.txt /tmp/requirements.in
/opt/conan_env/bin/python -m pip install -r /tmp/requirements.txt --require-hashes
EOF

Expand Down
2 changes: 1 addition & 1 deletion images/rippled/build.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker build -t flarefoundation/rippled:2.6.0-dless .
docker build -t flarefoundation/rippled:2.6.1-dless .
1 change: 0 additions & 1 deletion images/rippled/requirements.in

This file was deleted.

266 changes: 0 additions & 266 deletions images/rippled/requirements.txt

This file was deleted.