This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
docker:rhel74 [2017/12/30 07:23] veera [Install Docker CE on RHEL7.4] |
docker:rhel74 [2017/12/30 07:31] (current) veera |
||
---|---|---|---|
Line 20: | Line 20: | ||
</code> | </code> | ||
+ | |||
+ | |||
+ | ===== Start the Docker service ===== | ||
+ | |||
+ | After installing Docker CE you need to start the service. | ||
+ | |||
+ | <code bash> | ||
+ | |||
+ | systemctl start docker | ||
+ | |||
+ | </code> | ||
+ | |||
+ | |||
+ | ===== Run TrisulNSM on eth0 ===== | ||
+ | |||
+ | The following command starts the TrisulNSM Docker image with the following properties | ||
+ | |||
+ | - Captures from interface ''eth0'' | ||
+ | - Stores persistent data in ''/opt/trisul6_root'' | ||
+ | - Names the container ''trisul1a'' for ease of use | ||
+ | |||
+ | |||
+ | <code bash> | ||
+ | |||
+ | sudo docker run --name=trisul1a \ | ||
+ | --net=host -v /opt/trisul6_root:/trisulroot \ | ||
+ | --d trisulnsm/trisul6 \ | ||
+ | --interface eth0 | ||
+ | |||
+ | </code> | ||
- | d | ||