mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
da53bff5df
common services redis and mariadb frappe services gunicorn, schedule, workers, socketio erpnext services gunicorm, schedule, workers, socketio
36 lines
669 B
YAML
36 lines
669 B
YAML
version: '3'
|
|
|
|
services:
|
|
redis-cache:
|
|
image: redis:latest
|
|
restart: on-failure
|
|
volumes:
|
|
- redis-cache-vol:/data
|
|
|
|
redis-queue:
|
|
image: redis:latest
|
|
restart: on-failure
|
|
volumes:
|
|
- redis-queue-vol:/data
|
|
|
|
redis-socketio:
|
|
image: redis:latest
|
|
restart: on-failure
|
|
volumes:
|
|
- redis-socketio-vol:/data
|
|
|
|
mariadb:
|
|
image: mariadb:10.3
|
|
restart: on-failure
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
|
volumes:
|
|
- ./frappe-mariadb.cnf:/etc/mysql/conf.d/frappe.cnf
|
|
- mariadb-vol:/var/lib/mysql
|
|
|
|
volumes:
|
|
mariadb-vol:
|
|
redis-cache-vol:
|
|
redis-queue-vol:
|
|
redis-socketio-vol:
|