Docker Support¶
A pre-built Docker image can be used as an alternative to installing a Python environment with the libraries required for the MISP DXL Python Service. Docker images for the MISP DXL Python Service are posted to the following Docker repository:
https://hub.docker.com/r/opendxl/opendxl-misp-service-python/
The remainder of this page walks through the steps required to configure the service, pull the image from the repository, and run the MISP DXL Python Service via a Docker container.
Service Configuration¶
The first step is to connect to the host that is running Docker and configure the MISP DXL Python Service. The configuration files that are required for the MISP DXL Python Service will reside on the host system and be made available to the Docker container via a data volume.
Once you have logged into the host system, perform the following steps:
1.) Create a directory to contain the configuration files
mkdir dxlmispservice-config2.) Change to the newly created directory
cd dxlmispservice-config3.) Download the latest configuration files for the MISP DXL Python Service
The latest release of the service can be found at the following page:
https://github.com/opendxl/opendxl-misp-service-python/releases/latest
Download the latest configuration package (dxlmispservice-python-dist-config). For example:
wget https://github.com/opendxl/opendxl-misp-service-python/releases/download/0.1.5/dxlmispservice-python-dist-config-0.1.5.zip4.) Extract the configuration package
unzip dxlmispservice-python-dist-config-0.1.5.zip5.) Populate the configuration files:
Pull Docker Image¶
The next step is to pull the MISP DXL Python Service image from the Docker repository.
The image can be pulled using the following Docker command:
docker pull opendxl/opendxl-misp-service-python:<release-version>
The following parameters must be specified:
release-version
The release version of the MISP DXL Python Service
For example:
docker pull opendxl/opendxl-misp-service-python:0.1.5
Create Docker Container¶
The final step is to create a Docker container based on the pulled image.
The container can be created using the following Docker command:
docker run -d --name dxlmispservice -v <host-config-dir>:/opt/dxlmispservice-config opendxl/opendxl-misp-service-python:<release-version>
The following parameters must be specified:
host-config-dir
The directory on the host that contains the service configuration filesrelease-version
The version of the image (See "Pull Docker Image" section above)
For example:
docker run -d --name dxlmispservice -v /home/myuser/dxlmispservice-config:/opt/dxlmispservice-config opendxl/opendxl-misp-service-python:0.1.5
Note: A restart policy can be specified via the restart flag (--restart <policy>
). This flag can be used to restart
the container when the system reboots or if the service terminates abnormally. The unless-stopped
policy will
restart the container unless it has been explicitly stopped.
Additional Docker Commands¶
The following Docker commands are useful once the container has been created.
Container Status
The
ps
command can be used to show the status of the container.
docker ps --filter name=dxlmispservice
Example output:
CONTAINER ID COMMAND CREATED STATUS c60eaf0788fe "python -m dxlmisp..." 7 minutes ago Up 7 minutesContainer Logs
The
logs
command can be used to display the log messages for the container.
docker logs dxlmispservice
Example output:
Running application ... On 'run' callback. On 'load configuration' callback. Connecting to MISP API URL: https://172.17.0.3:443 Connecting to MISP ZeroMQ URL: tcp://172.17.0.3:50000 Subscribing to MISP ZeroMQ topic: misp_json ... Incoming message configuration: queueSize=1000, threadCount=10 Message callback configuration: queueSize=1000, threadCount=10 Attempting to connect to DXL fabric ... Connected to DXL fabric. Registering service: misp_service Registering request callback: misp_new_event_requesthandler. Topic: /opendxl-misp/service/misp-api/new_event. Registering request callback: misp_search_requesthandler. Topic: /opendxl-misp/service/misp-api/search. Registering request callback: misp_add_internal_comment_requesthandler. Topic: /opendxl-misp/service/misp-api/add_internal_comment. Registering request callback: misp_tag_requesthandler. Topic: /opendxl-misp/service/misp-api/tag. Registering request callback: misp_sighting_requesthandler. Topic: /opendxl-misp/service/misp-api/sighting. On 'DXL connect' callback.The log output can be followed by adding a
-f
flag (similar to tail) to the logs command.Stop/Restart/Start
The container can be stopped, restarted, and started using the following commands:
docker stop dxlmispservice
docker restart dxlmispservice
docker start dxlmispservice