2020-03-05 21:39:03 +05:30
|
|
|
version: "3.7"
|
|
|
|
services:
|
|
|
|
mariadb:
|
|
|
|
image: mariadb:10.3
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=123
|
|
|
|
- MYSQL_USER=root
|
|
|
|
volumes:
|
|
|
|
- ../installation/frappe-mariadb.cnf:/etc/mysql/conf.d/frappe.cnf
|
|
|
|
- mariadb-vol:/var/lib/mysql
|
2020-04-17 00:34:22 +01:00
|
|
|
ports:
|
|
|
|
- 3306:3306
|
2020-03-05 21:39:03 +05:30
|
|
|
|
|
|
|
redis-cache:
|
|
|
|
image: redis:alpine
|
|
|
|
|
|
|
|
redis-queue:
|
|
|
|
image: redis:alpine
|
|
|
|
|
|
|
|
redis-socketio:
|
|
|
|
image: redis:alpine
|
|
|
|
|
|
|
|
frappe:
|
|
|
|
image: frappe/bench:latest
|
|
|
|
command: sleep infinity
|
|
|
|
volumes:
|
|
|
|
- ..:/workspace:cached
|
|
|
|
ports:
|
|
|
|
- "8000:8000"
|
2020-03-10 20:05:38 +05:30
|
|
|
- "9000:9000"
|
2020-03-05 21:39:03 +05:30
|
|
|
|
|
|
|
volumes:
|
|
|
|
mariadb-vol:
|