20 lines
467 B
YAML
20 lines
467 B
YAML
version: '3'
|
|
services:
|
|
portainer:
|
|
image: portainerci/portainer:$PORTAINER_TAG
|
|
container_name: e2e-portainer
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
cypress:
|
|
image: cypress/included:3.5.0
|
|
container_name: e2e-cypress
|
|
depends_on:
|
|
- portainer
|
|
working_dir: /e2e
|
|
environment:
|
|
- CYPRESS_baseUrl=http://e2e-portainer:9000
|
|
volumes:
|
|
- ./cypress:/e2e/cypress
|
|
- ./cypress.json:/e2e/cypress.json
|