PromucFlow_constructor/app/client/cypress/cypress-docker-compose.yml
Satish Gandham b2828dfe93
ci: Add lint check to the build step (#21442)
Add a step to verify lint rules in client build workflow.

---------

Co-authored-by: Satish Gandham <hello@satishgandham.com>
2023-03-20 22:50:44 +05:30

34 lines
581 B
YAML

version: "3.7"
services:
appsmith-server:
image: appsmith/appsmith-server:latest
environment:
APPSMITH_MONGODB_URI: "mongodb://mongo:27017/appsmith"
APPSMITH_REDIS_URL: "redis://redis:6379"
APPSMITH_MAIL_ENABLED: "false"
ports:
- "8080:8080"
links:
- mongo
depends_on:
- mongo
networks:
- appsmith
mongo:
image: mongo
environment:
- MONGO_INITDB_DATABASE=appsmith
networks:
- appsmith
redis:
image: redis
networks:
- appsmith
networks:
appsmith:
driver: bridge