Useful commands
Checking the logs
abra app ls
for finding the right appabra app logs <domain>
for showing the logs
You can also get the logs for just one service:
abra app ps <domain>
for listing the servicesabra app logs <domain> <service>
for showing the logs for that service
If you want to check the logs for a specfic interval, you can switch to the corresponding Docker context, which abra uses behind the scenes:
docker context ls
for finding the context, which should match your domain namedocker context use <context name>
for switching to the contextdocker ps
for finding the container ID of the servicedocker logs <container ID> --since <timestamp> --until <timestamp>
for showing the logs of the interval between both timestamps (e.g. "2013-01-02T13:23:37Z")docker context use default
if you want to switch back to your default context