Nicolas De Loof fb73dd58d9 Move compose e2e tests into pkg
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2021-06-28 08:47:58 +02:00

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: