docker-compose.yml 232 B

123456789101112
  1. version: "2"
  2. services:
  3. --test-service:
  4. image: busybox:1.27.0.2
  5. build: .
  6. command: top
  7. ports:
  8. - "8080:80"
  9. --log-service:
  10. image: busybox:1.31.0-uclibc
  11. command: sh -c "echo hello && tail -f /dev/null"