I already have running container how to go inside it command line ?
This topic shows you how to access the container shell and run IBM Workload Automation commands.
To check the container status and run commands, you need to access the containers as described below:
- Obtain the container ID by running the following command: docker psAn output similar to the following one is returned:
- Access the Docker container by running the following command: docker exec -it <container_id> /bin/bash
Where
- container_id
- Is the ID of the container obtained with the command explained in the first step, for example b02459af2b9c.
Comments
Post a Comment