salix-front/docker-compose.e2e.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2025-01-29 07:29:35 +00:00
version: '3.7'
2024-10-02 13:20:54 +00:00
services:
front:
command: npx quasar dev
2024-10-02 13:20:54 +00:00
build:
context: .
dockerfile: ./Dockerfile.e2e
2024-10-04 10:08:47 +00:00
network_mode: host
e2e:
command: npx cypress run
build:
context: .
dockerfile: ./Dockerfile.e2e
network_mode: host
# db:
# image: db
# command: npx myt run -t --ci -d -n front_default
# build:
# context: .
# dockerfile: test/cypress/db/Dockerfile
# network_mode: host
2025-01-31 11:30:23 +00:00
# privileged: true
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
2024-10-04 10:08:47 +00:00
# back:
# image: back
# build:
# context: ./salix
# dockerfile: salix/back/Dockerfile
# # depends_on:
# # - db
# ports:
# - 3000:3000
# - 5000:5000
# volumes:
# - ./test/cypress/storage:/salix/storage
2024-10-02 13:20:54 +00:00
# e2e-2:
# image: registry.verdnatura.es/salix-frontend:${VERSION:?}
# command: npx cypress run --config-file test/cypress/configs/cypress.config.2.js
# build:
# context: .
# dockerfile: ./Dockerfile.e2e
2025-01-31 11:30:23 +00:00
#