mirror of
https://github.com/docker/compose.git
synced 2025-08-25 03:28:10 +02:00
22 lines
316 B
YAML
22 lines
316 B
YAML
version: "2"
|
|
|
|
services:
|
|
web:
|
|
image: alpine:3.10.1
|
|
command: top
|
|
networks: ["front"]
|
|
app:
|
|
image: alpine:3.10.1
|
|
command: top
|
|
networks: ["front", "back"]
|
|
links:
|
|
- "db:database"
|
|
db:
|
|
image: alpine:3.10.1
|
|
command: top
|
|
networks: ["back"]
|
|
|
|
networks:
|
|
front: {}
|
|
back: {}
|