2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-19 10:39:02 +00:00
frappe_docker/.devcontainer/docker-compose.yml

33 lines
624 B
YAML
Raw Normal View History

2020-03-05 16:09:03 +00:00
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
redis-cache:
image: redis:alpine
redis-queue:
image: redis:alpine
redis-socketio:
image: redis:alpine
frappe:
2020-06-11 07:25:27 +00:00
image: frappe/bench:latest
2020-03-05 16:09:03 +00:00
command: sleep infinity
volumes:
- ..:/workspace:cached
working_dir: /workspace/development
2020-03-05 16:09:03 +00:00
ports:
- "8000-8005:8000-8005"
- "9000-9005:9000-9005"
2020-03-05 16:09:03 +00:00
volumes:
mariadb-vol: