2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-14 00:54:07 +00:00
frappe_docker/.devcontainer/docker-compose.yml

33 lines
604 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:
image: frappe/bench:latest
command: sleep infinity
volumes:
- ..:/workspace:cached
working_dir: /workspace/development
2020-03-05 16:09:03 +00:00
ports:
- "8000:8000"
- "9000:9000"
2020-03-05 16:09:03 +00:00
volumes:
mariadb-vol: