mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
22 lines
298 B
YAML
22 lines
298 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: {}
|