Skip to content

Commit ce6e95c

Browse files
committed
Update the gprofiler docker repo due to repo migration
Signed-off-by: Min Lim <min.yeol.lim@intel.com>
1 parent e1f3e48 commit ce6e95c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ For example,
160160
that 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

src/gprofiler/frontend/src/components/installation/deployStepContent/DockerDeployStepContent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { getServerHostFlag } from '@/utils/installationUtils';
2727

2828
const 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

0 commit comments

Comments
 (0)