15 lines
226 B
YAML
15 lines
226 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
cypress:
|
|
build:
|
|
context: ./e2e
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- app
|
|
environment:
|
|
- CYPRESS_baseUrl=http://app:8000
|
|
|