|
| 1 | +--- |
| 2 | +version: '3' |
| 3 | + |
| 4 | +networks: |
| 5 | + test_network: |
| 6 | + external: true |
| 7 | + |
| 8 | +services: |
| 9 | + nfacctd: |
| 10 | + image: pmacct/nfacctd:v1.7.9 |
| 11 | + container_name: nfacctd |
| 12 | + volumes: |
| 13 | + - ./nfacctd.conf:/etc/pmacct/nfacctd.conf |
| 14 | + - ./tmp/logs:/var/log/pmacct |
| 15 | + networks: |
| 16 | + test_network: |
| 17 | + ipv4_address: 192.168.100.100 |
| 18 | + ipv6_address: cafe::100 |
| 19 | + |
| 20 | + nfacctd-bgp: |
| 21 | + image: pmacct/nfacctd:v1.7.9 |
| 22 | + container_name: nfacctd-bgp |
| 23 | + volumes: |
| 24 | + - ./nfacctd-bgp.conf:/etc/pmacct/nfacctd.conf |
| 25 | + - ./tmp/logs:/var/log/pmacct |
| 26 | + networks: |
| 27 | + test_network: |
| 28 | + ipv4_address: 192.168.100.101 |
| 29 | + ipv6_address: cafe::101 |
| 30 | + |
| 31 | + nfacctd-bmp: |
| 32 | + image: pmacct/nfacctd:v1.7.9 |
| 33 | + container_name: nfacctd-bmp |
| 34 | + volumes: |
| 35 | + - ./nfacctd-bmp.conf:/etc/pmacct/nfacctd.conf |
| 36 | + - ./tmp/logs:/var/log/pmacct |
| 37 | + networks: |
| 38 | + test_network: |
| 39 | + ipv4_address: 192.168.100.102 |
| 40 | + ipv6_address: cafe::102 |
| 41 | + |
| 42 | + pmtelemetryd-tcp-json: |
| 43 | + image: pmacct/pmtelemetryd:v1.7.9 |
| 44 | + container_name: pmtelemetryd-tcp-json |
| 45 | + volumes: |
| 46 | + - ./pmtelemetryd-tcp-json.conf:/etc/pmacct/pmtelemetryd.conf |
| 47 | + - ./tmp/logs:/var/log/pmacct |
| 48 | + networks: |
| 49 | + test_network: |
| 50 | + ipv4_address: 192.168.100.200 |
| 51 | + ipv6_address: cafe::200 |
| 52 | + |
| 53 | + pmtelemetryd-udp-notif: |
| 54 | + image: pmacct/pmtelemetryd:v1.7.9 |
| 55 | + container_name: pmtelemetryd-udp-notif |
| 56 | + volumes: |
| 57 | + - ./pmtelemetryd-udp-notif.conf:/etc/pmacct/pmtelemetryd.conf |
| 58 | + - ./tmp/logs:/var/log/pmacct |
| 59 | + networks: |
| 60 | + test_network: |
| 61 | + ipv4_address: 192.168.100.201 |
| 62 | + ipv6_address: cafe::201 |
0 commit comments