Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. docker ps
    Shows the names and status of any running containers.
  2. docker exec
    Run  a command inside a running docker container.  You will find  docker exec -it shibboleth_idp_0 bash a handy command for debugging Shibboleth issues.  This command will open a root shell inside the container and map the output back to your VM session.  Inside the container you will find the familiar /opt/shibboleth-idp tree, including access to the configuration and logs. 
  3. docker start
    To start the IdP after rebooting the VM, run docker start shib-shibboleth_idp_0
  4. docker stop
    To stop the IdP, run docker stop shib-shibboleth_idp_0
  5. docker cp
    Used to copy files in to or out of a running container.  The syntax is similar to scp.  For example, to copy a logfile to the VM, run the command
    docker cp shib-shibboleth_idp_0:/opt/shibboleth-idp/logs/idp-process.log .

...