Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(packages): dolos reorder steps to resolve start issue #238

Merged
merged 1 commit into from
May 25, 2024
Merged
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
19 changes: 9 additions & 10 deletions packages/dolos/dolos-0.7.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ description: Dolos is a Cardano data node
dependencies:
- cardano-config >= 20240515
installSteps:
- file:
filename: daemon.toml
source: files/daemon.toml.gotmpl
- docker:
containerName: dolos
image: ghcr.io/txpipe/dolos:v0.7.0
Expand All @@ -15,20 +18,16 @@ installSteps:
- '{{ .Paths.DataDir }}/data:/data'
- '{{ .Paths.ContextDir }}/config/{{ .Context.Network }}:/config'
ports:
- "30013:30013"
- "50051:50051"
- "30013"
- "50051"
pullOnly: false
- file:
binary: true
filename: daemon.toml
source: files/daemon.toml.gotmpl
outputs:
- name: dolos-grpc
- name: grpc
description: Dolos gRPC service
value: 'http://localhost:50051'
- name: dolos-ouroboros
value: 'http://localhost:{{ index (index .Ports "dolos") "50051" }}'
- name: ouroboros-ntn
description: Dolos Ouroboros Node-to-Node service
value: 'localhost:30013'
value: 'localhost:{{ index (index .Ports "dolos") "30013" }}'
tags:
- docker
- linux
Expand Down