...
Download the desired DPOD Docker image from IBM Docker Hub or from IBM's Fix CentralAfter
- Specific version: dpod:<version number>. For example: dpod:1.0.8.0
- Latest version: dpod:latest
Image Installation
There are two options for installing DPOD Docker image on you local image repository:
Use the Docker pull command:
Code Block language bash theme RDark docker pull ibmcom/dpod:latest
Manual load: after downloading the desired images to your Docker host use the load command:
Code Block language bash theme RDark 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 | ||||
---|---|---|---|---|
| ||||
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" |
...