To run an OpenEdge database Docker container image, run the following command in your Docker host:
docker run -d -p <database_server_port>:<database_server_port> -p <database_minport>
-<database_maxport>:<database_minport>-<database_maxport> -e DB_BROKER_PORT=<database_server_port>
 -e DB_MINPORT=<database_minport> -e DB_MAXPORT=<database_maxport> <custom_image_name>
In the command:
  • The -d parameter runs the Docker container in detached mode.
  • The -p parameter publishes the database server port and the database minimum and maximum port range for interhost and intercotainer communication. If this parameter is not specified, you cannot access the OpenEdge database running inside a container from outside the container.
  • The -e parameter sets an environment variable for the container.