mirror of https://github.com/docker/compose.git
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"
|