mirror of https://github.com/docker/compose.git
11 lines
155 B
YAML
11 lines
155 B
YAML
|
version: 2
|
||
|
services:
|
||
|
simple:
|
||
|
image: busybox:latest
|
||
|
command: top
|
||
|
links:
|
||
|
- another
|
||
|
another:
|
||
|
image: busybox:latest
|
||
|
command: top
|