Access the admin serviceΒΆ

To access the Decapod admin service:

$ docker-compose -p PROJECT_NAME exec admin bash

Note

The -p option is the name of the project. If you have not specified it when running docker-compose, do not specify it now.

As a result, you will enter the container. The default environment allows you to run the decapod utility with a configured URL and login/password pair root/root.

root@7252bfd5947d:/# env | grep DECAPOD
DECAPOD_PASSWORD=root
DECAPOD_LOGIN=root
DECAPOD_URL=http://frontend:80

The admin service provides bundled documentation within the container. To access documentation:

  1. Obtain the documentation port. The port is the value of the DECAPOD_DOCS_PORT environment variable and is 9998 by default.
  2. Access the documentation using the obtained port and your credentials. For example, if you access Decapod using http://10.0.0.10:9999, the documentation will be served on http://10.0.0.10:9998.