21 lines
296 B
YAML
21 lines
296 B
YAML
version: 2
|
|
|
|
services:
|
|
web:
|
|
image: busybox
|
|
command: top
|
|
networks: ["front"]
|
|
app:
|
|
image: busybox
|
|
command: top
|
|
networks: ["front", "back"]
|
|
links:
|
|
- "db:database"
|
|
db:
|
|
image: busybox
|
|
command: top
|
|
networks: ["back"]
|
|
|
|
networks:
|
|
front: {}
|
|
back: {}
|