docker-compose.yml 227 B

12345678910111213
  1. version: "2.0"
  2. services:
  3. db:
  4. image: busybox:latest
  5. command: top
  6. web:
  7. image: busybox:latest
  8. command: top
  9. depends_on:
  10. - db
  11. console:
  12. image: busybox:latest
  13. command: top