mirror of https://github.com/docker/compose.git
17 lines
204 B
YAML
17 lines
204 B
YAML
|
version: 2
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
image: busybox
|
||
|
command: top
|
||
|
networks:
|
||
|
- networks_foo
|
||
|
- bar
|
||
|
|
||
|
networks:
|
||
|
networks_foo:
|
||
|
external: true
|
||
|
bar:
|
||
|
external:
|
||
|
name: networks_bar
|