mirror of https://github.com/docker/compose.git
25 lines
348 B
YAML
25 lines
348 B
YAML
|
version: '3.8'
|
||
|
services:
|
||
|
back:
|
||
|
image: alpine
|
||
|
command: echo "Hello there!!"
|
||
|
depends_on:
|
||
|
- db
|
||
|
networks:
|
||
|
- backnet
|
||
|
db:
|
||
|
image: nginx:alpine
|
||
|
networks:
|
||
|
- backnet
|
||
|
volumes:
|
||
|
- data:/test
|
||
|
front:
|
||
|
image: nginx:alpine
|
||
|
networks:
|
||
|
- frontnet
|
||
|
networks:
|
||
|
frontnet:
|
||
|
backnet:
|
||
|
volumes:
|
||
|
data:
|