Skip to content

Commit 220fe35

Browse files
committed
update docker documentation to reflect #1687
1 parent 2bd31af commit 220fe35

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

guide/01-getting-started/install-and-set-up.ipynb

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -262,28 +262,25 @@
262262
"collapsed": true
263263
},
264264
"source": [
265-
"## Installation as a Docker image\n",
265+
"## Install as a Docker image\n",
266266
"\n",
267267
"[Docker](https://www.docker.com) is a popular containerization technology. Docker containers bundle software in a complete file system with everything that is needed to run it. Docker containers run the same regardless of your operating system. To learn more about docker, refer to [the official documentation](https://docs.docker.com/engine/getstarted/).\n",
268268
"\n",
269-
"The ArcGIS API for Python is shipped as a [Docker image](https://hub.docker.com/r/esridocker/arcgis-api-python-notebook/) which you can download and power up whenever you want to use the API. These images when spun up into containers, run in an isolated environment without making any changes to your local file system.\n",
269+
"The ArcGIS API for Python is shipped as a [Docker image](https://github.com/Esri/arcgis-python-api/pkgs/container/arcgis-python-api-notebook) which you can download and power up whenever you want to use the API. These images when spun up into containers, run in an isolated environment without making any changes to your local file system.\n",
270270
"\n",
271271
"Follow the steps below to get Docker on your computer and run the API:\n",
272272
"\n",
273273
" * [Download docker](https://www.docker.com/products/overview) and [install](https://docs.docker.com/engine/installation/) it on your computer.\n",
274274
" * Once installed, run the following command in terminal to pull Docker image\n",
275275
" \n",
276-
" `docker pull esridocker/arcgis-api-python-notebook`\n",
277-
" \n",
278-
" ![docker pull command](../../static/img/guide_getstarted_installandsetup_04.png)\n",
279-
"\n",
276+
" `docker pull ghcr.io/esri/arcgis-python-api-notebook`\n",
280277
"\n",
281278
" * Then spin the image into a container using the following command in terminal. Replace the `<localport>` with an available port number, for instance `8889`. \n",
282279
" \n",
283-
" `docker run -it -p <localport>:8888 esridocker/arcgis-api-python-notebook`\n",
280+
" `docker run -it -p <localport>:8888 ghcr.io/esri/arcgis-python-api-notebook`\n",
284281
"\n",
285282
"\n",
286-
" * When the container starts, it will provide a URL (with a one time token) to open your local Notebook instance. Copy the URL and paste it in your browser's address bar to use the notebooks.\n",
283+
" * When the container starts, it will provide a 127.0.0.1 URL (with a one time token) to open your local Notebook instance. Copy the URL and paste it in your browser's address bar to use the notebooks.\n",
287284
" "
288285
]
289286
},

guide/01-getting-started/install-older-versions.ipynb

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -335,24 +335,21 @@
335335
"\n",
336336
"[Docker](https://www.docker.com) is a popular containerization technology. Docker containers bundle software in a complete file system with everything that is needed to run it. Docker containers run the same regardless of your operating system. To learn more about docker, refer to [the official documentation](https://docs.docker.com/engine/getstarted/).\n",
337337
"\n",
338-
"The ArcGIS API for Python is shipped as a [Docker image](https://hub.docker.com/r/esridocker/arcgis-api-python-notebook/) which you can download and power up whenever you want to use the API. These images when spun up into containers, run in an isolated environment without making any changes to your local file system.\n",
338+
"The ArcGIS API for Python is shipped as a [Docker image](https://github.com/Esri/arcgis-python-api/pkgs/container/arcgis-python-api-notebook) which you can download and power up whenever you want to use the API. These images when spun up into containers, run in an isolated environment without making any changes to your local file system.\n",
339339
"\n",
340340
"Follow the steps below to get Docker on your computer and run the API:\n",
341341
"\n",
342342
" * [Download docker](https://www.docker.com/products/overview) and [install](https://docs.docker.com/engine/installation/) it on your computer.\n",
343343
" * Once installed, run the following command in terminal to pull Docker image\n",
344344
" \n",
345-
" `docker pull esridocker/arcgis-api-python-notebook`\n",
346-
" \n",
347-
" ![docker pull command](../../static/img/guide_getstarted_installandsetup_04.png)\n",
348-
"\n",
345+
" `docker pull ghcr.io/esri/arcgis-python-api-notebook`\n",
349346
"\n",
350347
" * Then spin the image into a container using the following command in terminal. Replace the `<localport>` with an available port number, for instance `8889`. \n",
351348
" \n",
352-
" `docker run -it -p <localport>:8888 esridocker/arcgis-api-python-notebook`\n",
349+
" `docker run -it -p <localport>:8888 ghcr.io/esri/arcgis-python-api-notebook`\n",
353350
"\n",
354351
"\n",
355-
" * When the container starts, it will provide a URL (with a one time token) to open your local Notebook instance. Copy the URL and paste it in your browser's address bar to use the notebooks.\n",
352+
" * When the container starts, it will provide a 127.0.0.1 URL (with a one time token) to open your local Notebook instance. Copy the URL and paste it in your browser's address bar to use the notebooks.\n",
356353
" \n",
357354
"## Install-Offline\n",
358355
"\n",
Binary file not shown.

0 commit comments

Comments
 (0)