Docker Container

General information

All info, including inferences, is stored in a Docker container. You can Enter it, View it, Exit it. Apparently you can do other things too, but this is the basic minimum.

1. Find out the names of your Docker containers

/docker ps

2. Run the command to enter the Docker container

Insert values from the first step into it.

docker logs -f join-mlnode-308

3. View the contents

Insert values from the first step into it.

docker logs join-mlnode-308 2>&1 | grep -iE "poc|batch|send|validat|callback|error|failed|completed" | tail -100

4. Exit the container

Otherwise you won’t be able to work with the Command Line.

docker exec -it mlnode-308 bash

END

Last updated