Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Download the desired DPOD Docker image from IBM Docker Hub or from IBM's Fix CentralAfter

  1. Specific version: dpod:<version number>. For example: dpod:1.0.8.0
  2. Latest version: dpod:latest

Image Installation

There are two options for installing DPOD Docker image on you local image repository:

  1. Use the Docker pull command:

    Code Block
    languagebash
    themeRDark
    docker pull ibmcom/dpod:latest


  2. Manual load: after downloading the desired images to your Docker host use the load command:

    Code Block
    languagebash
    themeRDark
    docker load < /tmp/dpod-latest.tar.gz


After downloading the desired images to your Docker host use the load command:

Use the following command to display your local image repository:

...

  • Web Console - From your web browser use the container IP address, or more likely your Docker host IP address mapped to the Web Console port (443 in the example) : https://<IP address>.
    user : admin and default password : adminuser
  • SSH - Use the container IP address, or more likely your Docker host IP address mapped to the ssh port (9022 in the example) .
    user : root and default password : dpod

Re Run Previously Created DPOD Docker Container


Code Block
languagebash
themeRDark
docker start dpod  && docker exec -d -u root dpod /bin/su - -c "export ACCEPT_LICENSE=1; export TIME_ZONE=America/New_York ;export DPOD_EXT_HOST_IP=192.168.65.110 ; /app/scripts/app-init.sh"

...