mirror of https://github.com/docker/compose.git
18 lines
205 B
YAML
18 lines
205 B
YAML
|
version: "3.5"
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
image: busybox
|
||
|
command: top
|
||
|
networks:
|
||
|
- foo
|
||
|
- bar
|
||
|
|
||
|
networks:
|
||
|
foo:
|
||
|
external: true
|
||
|
name: some_foo
|
||
|
bar:
|
||
|
external:
|
||
|
name: some_bar
|