docker-compose.yml 183 B

12345678910
  1. version: '2.2'
  2. services:
  3. web:
  4. image: busybox:1.31.0-uclibc
  5. command: "sleep 200"
  6. depends_on:
  7. - db
  8. db:
  9. image: busybox:1.31.0-uclibc
  10. command: "sleep 200"