You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to build an docker images, which include my application container, besides, the pinpoint agent. But I'm not sure where I would run the collector, how can I config "profiler.collector.ip", makes that agent works everywhere, like, I only need to edit the docker-compose file , no need to enter the running application container and set that value.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi, sorry for the late response. Currently I don't think there is a way to configure profiler.collector.ip easily... But if you have some commands to run, you can use alternate Dockerfile:
FROM yous/pinpoint:1.6.0
RUN <command>
and set docker-compose.yml to use that Dockerfile:
build:
context: .dockerfile: Dockerfile-alternate
If you still have problems with this, then you may have to build images directly from pinpoint repository. They provides example docker-compose.yml, and this file was created with this commit. Following to these, you can set COLLECTOR_IP environment of pinpoint-agent.
I am trying to build an docker images, which include my application container, besides, the pinpoint agent. But I'm not sure where I would run the collector, how can I config "profiler.collector.ip", makes that agent works everywhere, like, I only need to edit the docker-compose file , no need to enter the running application container and set that value.
Thanks.
The text was updated successfully, but these errors were encountered: