Advertisement
EvenoR

Elixir V3 Update

Sep 8th, 2024 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.55 KB | None | 0 0
  1. - - - - - 1 - - - - -
  2.  
  3. cd elixir
  4. docker ps -a | grep elixir | awk '{print $1}' | xargs docker stop
  5.  
  6. - - - - - 2 - - - - -
  7.  
  8. docker ps -a | grep elixir | awk '{print $1}' | xargs docker rm
  9.  
  10. - - - - - 3 - - - - -
  11.  
  12. docker pull elixirprotocol/validator:v3 --platform linux/amd64
  13.  
  14. - - - - - 4 - - - - -
  15.  
  16. docker run --name elixir --env-file validator.env --platform linux/amd64 -p 17690:17690 --restart unless-stopped elixirprotocol/validator:v3
  17.  
  18. - - - - - 5 - - - - -
  19.  
  20. docker container ls
  21.  
  22. - - - - - 6 - - - - -
  23.  
  24. docker logs -f <Container_ID>
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement