Dockerhub: https://hub.docker.com/u/radiantcommunity
Docker scripts for Radiant blockchain and Optimized image size.
docker build -t <name-image> ..
docker run -it -v <name-volume>:/data --name <name-container> <name-image>
Allows to know which volumes are created in the system.
docker volume ls
Indicates the containers created in the system
docker container ps
docker inspect <id_container or name_container>
During the execution of a container, it is possible to enter it from another terminal.
docker exec -it <container_id_or name_container> /bin/bash
When a container is closed and you want to continue where it was.
docker start <container_id>
docker kill <id_container>
docker system purge --all