I want to see logs of my api that is added as a service container. Right now my app cannot connect to myapi
. If I do locally $ drone exec
it works, but it's not working on hosted drone and I want to see logs of service myapi
.
This is an example of my .drone.yml
build:
image: myapp:0.0.1
environment:
- API_HOST=localhost:8080
command:
- rspec
compose:
api:
image: myapi:0.2.1
Edit: Apparently drone:0.5 shows logs from all services and drone:0.4 shows only logs of the build
container.