quivr/docker-compose.dev.yml
Stan Girard d955e31f50
feat: 🎸 marketplace (#1657)
added explore button and removed unused feature openai key

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2023-11-19 18:46:12 +01:00

79 lines
1.5 KiB
YAML

version: "3"
services:
frontend:
image: frontend-dev
env_file:
- ./frontend/.env
build:
context: frontend
dockerfile: Dockerfile.dev
volumes:
- ./frontend/:/app
- /app/node_modules
- /app/.next
container_name: web
restart: unless-stopped
ports:
- 3000:3000
backend-core:
image: backend-base
env_file:
- ./backend/.env
build:
context: backend
dockerfile: Dockerfile.dev
args:
- DEV_MODE=true
container_name: backend-core
restart: unless-stopped
volumes:
- ./backend/:/code/
depends_on:
- redis
- worker
ports:
- 5050:5050
- 5678:5678 # debug port
redis:
image: redis:latest
container_name: redis
restart: unless-stopped
ports:
- 6379:6379
worker:
image: backend-base
env_file:
- ./backend/.env
build:
context: backend
dockerfile: Dockerfile.dev
container_name: worker
command: celery -A celery_worker worker -l info
restart: unless-stopped
depends_on:
- redis
volumes:
- ./backend/:/code/
flower:
image: backend-base
env_file:
- ./backend/.env
build:
context: backend
dockerfile: Dockerfile.dev
container_name: flower
command: celery -A celery_worker flower -l info --port=5555
restart: unless-stopped
volumes:
- ./backend/:/code/
depends_on:
- redis
- worker
ports:
- 5555:5555