Skip to main content

Bashing into a container

On Linux, Informer runs in Docker containers. To run a command inside one, open its Bash shell ("bash into" the container).

  1. Go to the Informer root install directory, which contains docker-compose.yml.
  2. List the services (each service maps to a container):
cat docker-compose.yml
  1. Open a shell in a container, replacing <containerName> with the service name:
docker-compose exec <containerName> bash
  1. Run what you need, then leave the container:
exit