mirror of
https://github.com/docker/compose.git
synced 2026-09-21 21:14:26 +00:00
24 lines
334 B
YAML
24 lines
334 B
YAML
version: '3.8'
|
|
services:
|
|
back:
|
|
image: alpine
|
|
command: echo "Hello there!!"
|
|
depends_on:
|
|
- db
|
|
networks:
|
|
- backnet
|
|
db:
|
|
image: nginx
|
|
networks:
|
|
- backnet
|
|
volumes:
|
|
- data:/test
|
|
front:
|
|
image: nginx
|
|
networks:
|
|
- frontnet
|
|
networks:
|
|
frontnet:
|
|
backnet:
|
|
volumes:
|
|
data:
|