File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/gprofiler/frontend/src/components/installation/deployStepContent Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ For example,
160160that will run a docker installation agent with self-signed certificate
161161(that will communicate from docker network to host network):
162162``` shell
163- docker run --name granulate-gprofiler --restart=always -d --pid=host --userns=host --privileged granulate /gprofiler:latest -cu --token=" <token from api or ui>" --service-name=" my-super-service" --server-host " https://host.docker.internal" --glogger-server " https://host.docker.internal" --no-verify
163+ docker run --name granulate-gprofiler --restart=always -d --pid=host --userns=host --privileged intel /gprofiler:latest -cu --token=" <token from api or ui>" --service-name=" my-super-service" --server-host " https://host.docker.internal" --glogger-server " https://host.docker.internal" --no-verify
164164```
165165
166166### Diagnostics
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import { getServerHostFlag } from '@/utils/installationUtils';
2727
2828const DockerDeployStepContent = ( { apiKey, serviceName, serverHost } ) => {
2929 const [ shouldAddNoVerify , setShouldAddNoVerify ] = useState ( true ) ;
30- const deployCommand = `docker pull granulate /gprofiler:latest\ndocker run --name granulate-gprofiler --restart=always -d --pid=host --userns=host --privileged granulate /gprofiler:latest -cu --token="${ apiKey } " --service-name="${ serviceName } " ${ getServerHostFlag (
30+ const deployCommand = `docker pull intel /gprofiler:latest\ndocker run --name granulate-gprofiler --restart=always -d --pid=host --userns=host --privileged intel /gprofiler:latest -cu --token="${ apiKey } " --service-name="${ serviceName } " ${ getServerHostFlag (
3131 serverHost
3232 ) } ${ shouldAddNoVerify ? ' --no-verify' : '' } `;
3333
You can’t perform that action at this time.
0 commit comments