mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
f605addb71
* chore: resolve merge conflict * ci: changes for version 15 * chore: upgrade python and nodejs * ci: fix v15 build * fix: add redis_socketio for backward compatibility * ci: fix v15 build * ci: fix test endpoint changed to erpnext.templates.pages.search_help.get_help_results_sections
23 lines
397 B
YAML
23 lines
397 B
YAML
services:
|
|
configurator:
|
|
environment:
|
|
REDIS_CACHE: redis-cache:6379
|
|
REDIS_QUEUE: redis-queue:6379
|
|
depends_on:
|
|
- redis-cache
|
|
- redis-queue
|
|
|
|
redis-cache:
|
|
image: redis:6.2-alpine
|
|
volumes:
|
|
- redis-cache-data:/data
|
|
|
|
redis-queue:
|
|
image: redis:6.2-alpine
|
|
volumes:
|
|
- redis-queue-data:/data
|
|
|
|
volumes:
|
|
redis-cache-data:
|
|
redis-queue-data:
|