The Docker Container for Light Developer Edition is a lightweight "Developer edition" (previously known Light) designated mainly for developers.
It is geared towards the DataPower developer that wants to run DPOD on their Development Workstation, in the context of limited functionality .
The Docker Container for Light Developer Edition does not support upgrades and not entitled to IBM support. Each new version requires deployment of new container.
...
- At least 2GB of disk space that can grow up to 4GB.
- At least 3GB of free memory.
- At least 4 Cores of Intel based CPUs
Installation
Image Download and Installation
Download the desired DPOD Docker image from IBM Docker Hub or from IBM's Fix Central
- Specific version: dpoddatapower-operations-dashboard:<version number>. For example: dpoddatapower-operations-dashboard:1.0.8.0
- Latest version: dpoddatapower-operations-dashboard:latest
Image Installation
...
Use the Docker pull command:
Code Block language bash theme RDark docker pull ibmcom/dpoddatapower-operations-dashboard: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.gzDPOD-Developer-Docker-1.0.8.tgz
After downloading the desired images to your Docker host use the load command:
...
- Add the --privileged option to the Docker run command.
- The file /etc/localtime should be shared with the container : copy The file located on /etc/localtime to the user directory usually located at /Users/<user name>
If you choose to copy the file to another directory make sure to add it to the Docker File Sharing (Docker preferences -> Preferences -> File sharing ). - Remove the cgroup volume from Docker run command
example Docker run command for OSX :
...