Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - - - - - 1 - - - - -
- cd elixir
- docker ps -a | grep elixir | awk '{print $1}' | xargs docker stop
- - - - - - 2 - - - - -
- docker ps -a | grep elixir | awk '{print $1}' | xargs docker rm
- - - - - - 3 - - - - -
- docker pull elixirprotocol/validator:v3 --platform linux/amd64
- - - - - - 4 - - - - -
- docker run --name elixir --env-file validator.env --platform linux/amd64 -p 17690:17690 --restart unless-stopped elixirprotocol/validator:v3
- - - - - - 5 - - - - -
- docker container ls
- - - - - - 6 - - - - -
- docker logs -f <Container_ID>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement