Skip to content

Commit

Permalink
Docker file and compose updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wkennedy committed Jun 12, 2024
1 parent fe00aa0 commit 60f2a9e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
6 changes: 3 additions & 3 deletions Dockerfile-logstash
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ FROM debian:stable-slim AS final
RUN apt -y update && apt install -y pkg-config && apt install -y libssl-dev && apt install -y openssl && apt install -y ca-certificates

RUN apt -y install curl bzip2
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.17.35/install)"
#ENV PATH="/root/.local/share/solana/install/active_release/bin:${PATH}"
RUN #solana-keygen new --no-bip39-passphrase
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.17.34/install)"
ENV PATH="/root/.local/share/solana/install/active_release/bin:${PATH}"
RUN solana-keygen new --no-bip39-passphrase

ENV SOLOGGER_APP_CONFIG_LOCATION=/config/local/sologger-config.json

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-otel
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ RUN apt -y update && apt install -y pkg-config && apt install -y libssl-dev && a

RUN apt -y install curl bzip2

RUN sh -c "$(curl -sSfL https://release.solana.com/v1.17.35/install)"
#ENV PATH="/root/.local/share/solana/install/active_release/bin:${PATH}"
RUN #solana-keygen new --no-bip39-passphrase
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.17.34/install)"
ENV PATH="/root/.local/share/solana/install/active_release/bin:${PATH}"
RUN solana-keygen new --no-bip39-passphrase

ENV SOLOGGER_APP_CONFIG_LOCATION=/config/local/sologger-config.json

Expand Down
5 changes: 3 additions & 2 deletions docker-examples/docker-parseable/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ services:
depends_on:
- parseable

sologger-geyser-plugin:
image: sologger-geyser-plugin
solana-test-validator-sologger-logstash:
image: brytelands/sologger-logstash-geyser-plugin:latest
container_name: solana-test-validator-sologger-logstash
tty: true
ports:
- "1024:1024"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ services:
- otel-collector
restart: on-failure

sologger-otel-geyser-plugin:
image: sologger-otel-geyser-plugin
solana-test-validator-sologger-otel:
image: brytelands/sologger-otel-geyser-plugin:latest
container_name: solana-test-validator-sologger-otel
restart: on-failure
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@ loggers:
sologger_geyser_plugin::log_processor::error:
level: error
appenders:
- stdout
additive: false
sologger_geyser_plugin::log_processor::info:
level: info
appenders:
- stdout
additive: false
sologger_geyser_plugin::geyser_plugin_sologger::update_account:
level: errore
level: error
appenders:
- stdout
additive: false
sologger_geyser_plugin::geyser_plugin_sologger::notify_block_metadata:
level: error
appenders:
- stdout
additive: false
sologger_geyser_plugin::geyser_plugin_sologger::update_slot_status:
level: error
appenders:
additive: false
sologger_geyser_plugin::geyser_plugin_sologger:
level: error
appenders:
- stdout
additive: false
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
},
"accountDataNotificationsEnabled": false,
"transactionNotificationsEnabled": true,
"logProcessorWorkerThreadCount": 3
"logProcessorWorkerThreadCount": 1
}

0 comments on commit 60f2a9e

Please sign in to comment.