Run an OpenEdge database Docker container image
- Last Updated: March 17, 2020
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
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
-dparameter runs the Docker container in detached mode. - The
-pparameter 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
-eparameter sets an environment variable for the container.