mirror of
https://github.com/docker/compose.git
synced 2025-09-01 06:58:14 +02:00
13 lines
232 B
YAML
13 lines
232 B
YAML
version: "2"
|
|
services:
|
|
--test-service:
|
|
image: busybox:1.27.0.2
|
|
build: .
|
|
command: top
|
|
ports:
|
|
- "8080:80"
|
|
|
|
--log-service:
|
|
image: busybox:1.31.0-uclibc
|
|
command: sh -c "echo hello && tail -f /dev/null"
|