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

Refactor compose command syntax #164

Open
corverroos opened this issue Feb 27, 2023 · 0 comments
Open

Refactor compose command syntax #164

corverroos opened this issue Feb 27, 2023 · 0 comments
Labels
protocol protocol team tickets

Comments

@corverroos
Copy link
Contributor

corverroos commented Feb 27, 2023

🎯 Problem to be solved

A user on discord reported that refactoring the docker-compose command syntax for geth and lighthouse and others to an array improves developer experience especially wrt disabling certain flags. https://discord.com/channels/849256203614945310/946519880910385172/1078776267194777810

From:

    command: |
      lighthouse bn
      --network=goerli
      --execution-endpoint=http://geth:8551
      --execution-jwt=/opt/jwt/jwt.hex
      --datadir=/opt/app/beacon/

To:

    command: 
     - lighthouse
     - bn
     - --network=goerli
     - --execution-endpoint=http://geth:8551
     - --execution-jwt=/opt/jwt/jwt.hex
     - --datadir=/opt/app/beacon/
@github-actions github-actions bot added the protocol protocol team tickets label Feb 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
protocol protocol team tickets
Projects
None yet
Development

No branches or pull requests

1 participant