why does docker compose still create an implicit network
services: echo: image: busybox command: echo 7 server: build: . command: server 0.0.0.0:8000 healthcheck: test: /app/compose-tinker poke localhost:8000 interval: 1s retries: 10 client: build: . command: client server:8000 tty: true stdin_open: true depends_on: server: condition: service_healthy networks: my_network: {} here’s…