Maintained by: Michael Oberdorf IT-Consulting
Source code: GitHub
Container image: DockerHub
The Modbus TCP Server is a simple, written in python, Modbus TCP server. The Modbus registers can also be predefined with values.
The Modbus server was initially created to act as a Modbus slave mock system for enhanced tests with modbus masters and to test collecting values from different registers.
The Modbus specification can be found here: PDF
If you want to build your own container image with the Dockerfile you should know that the file uses version pinning to have a deterministic environment for the application. This is a best practice and described in Hadolint DL3018.
The problem is, that Alpine Linux doesn't keep old versions inside the software repository. When software will be updated, the old (pinned) version will be removed and is so no longer available. Docker builds will be successful today and fail tomorrow.
See also here: hadolint/hadolint#464
The Dockerfile in this repo may have an not working stand of pinned versions. When you run in errors during your own build, please:
- Update the versions inside the Dockerfile for your own
- Don't create an issue in the Github repo, because this is a known issue
Step - 1 : Pull the Modbus TCP Server
docker pull oitc/modbus-serverStep - 2 : Run the Modbus TCP Server
docker run --rm -p 5020:5020 oitc/modbus-server:latestStep - 3 : Predefine registers
The default configuration file is configured to initialize every register with a 0x0000.
To set register values, you need to create your own configuration file.
docker run --rm -p 5020:5020 -v ./server_config.json:/server_config.json oitc/modbus-server:latest -f /server_config.jsonor you mount the config file over the default file, then you can skip the file parameter:
docker run --rm -p 5020:5020 -v ./server_config.json:/app/modbus_server.json oitc/modbus-server:latestThe container reads some configuration via environment variables.
| Environment variable name | Description | Required | Default value |
|---|---|---|---|
CONFIG_FILE |
The configuration file that that should be used to build the initial Modbus slave. | OPTIONAL | /app/modbus_server.json |
Alternatively, the container can also be configured with a command line option -f <file> instead of an environment variable. By default, the script will use /app/modbus_server.json.
The /app/modbus_server.json file comes with following content:
{
"server": {
"listenerAddress": "0.0.0.0",
"listenerPort": 5020,
"protocol": "TCP",
"tlsParams": {
"description": "path to certificate and private key to enable tls",
"privateKey": null,
"certificate": null
},
"logging": {
"format": "%(asctime)-15s %(threadName)-15s %(levelname)-8s %(module)-15s:%(lineno)-8s %(message)s",
"logLevel": "INFO"
}
},
"persistence": {
"enabled": false,
"file": "/data/modbus_registers.json",
"saveInterval": 30
},
"registers": {
"description": "initial values for the register types",
"initializeUndefinedRegisters": true,
"discreteInput": {},
"coils": {},
"holdingRegister": {},
"inputRegister": {}
}
}| Field | Type | Description |
|---|---|---|
server |
Object | Modbus slave specific runtime parameters. |
server.listenerAddress |
String | The IPv4 Address to bind to when starting the server. "0.0.0.0" lets the server listen on all interface addresses. |
server.listenerPort |
Integer | The port number of the modbus slave to listen to. |
server.protocol |
String | Defines if the server should use TCP or UDP (default: TCP) |
server.tlsParams |
Object | Configuration parameters to use TLS encrypted modbus tcp slave. (untested) |
server.tlsParams.description |
String | No configuration option, just a description of the parameters. |
server.tlsParams.privateKey |
String | Filesystem path of the private key to use for a TLS encrypted communication. |
server.tlsParams.certificate |
String | Filesystem path of the TLS certificate to use for a TLS encrypted communication. |
server.logging |
Object | Log specific configuration. |
server.logging.format |
String | The format of the log messages as described here: https://docs.python.org/3/library/logging.html#logrecord-attributes |
server.logging.logLevel |
String | Defines the maximum level of severity to log to std out. Possible values are DEBUG, INFO, WARN and ERROR. |
server.persistence |
Object | Configuration for the persistence layer to automatically saved and restored after the server is restarted. |
server.persistence.enabled |
Boolean | If true the persistence will be enabled. |
server.persistence.file |
String | The file to store the persistent data (if enabled). |
server.persistence.saveInterval |
Integer | The interval in seconds when to save the registers (this will be only done if there are changes). |
registers |
Object | Configuration parameters to predefine registers. |
registers.description |
String | No configuration option, just a description of the parameters. |
registers.initializeUndefinedRegisters |
Boolean | If true the server will initialize all not defined registers with a default value of 0. |
registers.discreteInput |
Object | The pre-defined registers of the register type "Discrete Input". |
registers.coils |
Object | The pre-defined registers of the register type "Coils". |
registers.holdingRegister |
Object | The pre-defined registers of the register type "Holding Registers". |
registers.inputRegister |
Object | The pre-defined registers of the register type "Input Registers". |
Pre-define registers always starts with the register number. We use a json format as configuration file, so the "key" needs to be a string. So, the register number needs also to be a string. During server initialization, the json key that represents the register number will be converted to an integer.
As by the modbus spec, the "Discrete Input" and "Coils" registers contains a single bit. In the json configuration file, we use true or false as register values.
Example configuration of pre-defined registers from type "Discrete Input" or "Coils":
[..]
"<register_type>": {
"0": true,
"1": true,
"42": true,
"166": false
}
[..]
As by the modbus spec, the "Holding Registers" and "Input Registers" tables contains a 16-bit word. In the json configuration file, we use a hexadecimal notation, starting with 0x, as register values.
With v1.2.0 of the modbus-server, you can also use integer values (0-65535) instead.
Example configuration of pre-defined registers from type "Holding Registers" or "Input Registers":
[..]
"<register_type>": {
"9": "0xAA00",
"23": "0xBB11",
"142": "0x1FC3",
"2346": "0x00FF"
}
[..]
The persistence layer enables all register changes (made by Modbus write accesses) to be automatically saved and restored after the server is restarted.
- The server checks whether a persistence file exists.
- If YES: Loads all register values from the file (initial configuration is skipped)
- If NO: Use the initial configuration from
modbus_server.json
- A background thread periodically saves the register data (default: every 30 seconds).
- Only changed data is saved (optimized for performance)
- Uses atomic writes (prevents data loss in case of crashes)
- A final save is performed.
- All current register values are backed up.
Add the following section to your modbus_server.json:
{
"server": { ... },
"persistence": {
"enabled": true,
"file": "/app/modbus_registers.json",
"saveInterval": 30
},
"registers": { ... }
}The persistence file is saved as JSON:
{
"discrete_inputs": {
"0": false,
"1": true,
"100": true
},
"coils": {
"0": true,
"1": false,
"50": true
},
"holding_registers": {
"0": 1234,
"1": 5678,
"100": 42
},
"input_registers": {
"0": 100,
"1": 200
}
}Hint: Only registers with values ≠ 0 are stored (space-saving).
For critical applications, you should create regular backups. When using Docker, you need to mount a local directory as volume to /data inside the container first.
# Cron-Job for daily backup
0 2 * * * cp /local/path/to/modbus_registers.json /local/backuppath/to/modbus_registers_$(date +\%Y\%m\%d).jsonservices:
modbus-server:
container_name: modbus-server
image: oitc/modbus-server:latest
restart: always
command: -f /server_config.json
ports:
- 5020:5020
volumes:
- ./server.json:/server_config.json:ro
- ./data:/data:rwI would appreciate a small donation to support the further development of my open source projects.
Copyright (c) 2020-2026 Michael Oberdorf IT-Consulting
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
