I want to use the image Zabbix/Zabbix-snmptraps it creates two mount points:
/var/lib/zabbix/snmptraps
/var/lib/zabbix/mibs
it creates two volumes automatically
I can put both volumes in one volume using the following command:
docker volume create zabbix-snmptraps-volume
docker run -it -d --name zabbix-snmp --mount type=volume, >source=zabbix-snmptraps-volume,destination=/var/lib/zabbix/snmptraps,destination=/var/lib/zabbix/mibs zabbix/zabbix-snmptraps
or my thoughts are stupid and you can’t do that
Thanks!!