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