compose/tests/compose-e2e/fixtures/run-test/docker-compose.yml
Guillaume Tardif 0e319ae65a Slightly better tests
Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
2020-12-18 09:59:02 +01:00

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: