network-mode.yml 429 B

123456789101112131415161718192021222324252627
  1. version: "2"
  2. services:
  3. bridge:
  4. image: busybox
  5. command: top
  6. network_mode: bridge
  7. service:
  8. image: busybox
  9. command: top
  10. network_mode: "service:bridge"
  11. container:
  12. image: busybox
  13. command: top
  14. network_mode: "container:composetest_network_mode_container"
  15. host:
  16. image: busybox
  17. command: top
  18. network_mode: host
  19. none:
  20. image: busybox
  21. command: top
  22. network_mode: none