Manage Docker container settings
- Last UpdatedJun 26, 2025
- 1 minute read
You can manage the following docker container settings:
Change port number
To use a different port other than 5590, you can specify a port variable on the docker run command line.
For example, to start the adapter using port 6000 instead of 5590, use the following command:
docker run -d -e PORT=6000 --network host <adapter>adapter
This command accesses the with port 6000 instead of port 5590.
Remove REST access
If you remove the --network host option from the docker run command, access is not possible from outside the container. This may be of value where you want to host an application in the same container as the adapter but do not want to have external access enabled.
Upgrade
To upgrade a Docker container with persistent storage to the latest version of Structured Data Files, you should follow the process above for creating a new container image. Then, when you run the container, use the same persistent storage that you previously used. This allows you to carry over all of the configuration data to the upgraded container.