version: "2"
services:
web:
image: alpine:3.10.1
command: top
networks: ["front"]
app:
networks: ["front", "back"]
links:
- "db:database"
db:
networks: ["back"]
networks:
front: {}
back: {}