Add a step to verify lint rules in client build workflow. --------- Co-authored-by: Satish Gandham <hello@satishgandham.com>
34 lines
581 B
YAML
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
|