version: "3" services: tg-0: build: context: "base/" dockerfile: "Dockerfile" command: ["/usr/sbin/sshd","-D", "-p", "6001"] expose: - "6001" hostname: "{{ ansible_hostname }}" network_mode: "host" privileged: true restart: "always" shm_size: "4G" volumes: - type: "bind" source: "/usr/bin/ofed_info" target: "/usr/bin/ofed_info" - type: "bind" source: "/dev/hugepages" target: "/dev/hugepages" - type: "bind" source: "/dev/vfio" target: "/dev/vfio" - type: "bind" source: "/etc/sudoers" target: "/etc/sudoers" - type: "bind" source: "/opt/" target: "/opt/" - type: "bind" source: "/usr/bin/iperf3" target: "/usr/bin/iperf3" - type: "bind" source: "/usr/lib/firmware/" target: "/usr/lib/firmware/" tg-1: build: context: "base/" dockerfile: "Dockerfile" command: ["/usr/sbin/sshd","-D", "-p", "6002"] expose: - "6002" hostname: "{{ ansible_hostname }}" network_mode: "host" privileged: true restart: "always" shm_size: "4G" volumes: - type: "bind" source: "/usr/bin/ofed_info" target: "/usr/bin/ofed_info" - type: "bind" source: "/dev/hugepages" target: "/dev/hugepages" - type: "bind" source: "/dev/vfio" target: "/dev/vfio" - type: "bind" source: "/etc/sudoers" target: "/etc/sudoers" - type: "bind" source: "/opt/" target: "/opt/" - type: "bind" source: "/usr/bin/iperf3" target: "/usr/bin/iperf3" - type: "bind" source: "/usr/lib/firmware/" target: "/usr/lib/firmware/"