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

45 lines
959 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
# Enable PostgreSQL only if you use it, see development/README.md for more information.
# postgresql:
# image: postgres:11.8
# restart: on-failure
# environment:
# - POSTGRES_PASSWORD=123
# volumes:
# - postgresql-vol:/var/lib/postgresql/data
2020-03-05 16:09:03 +00:00
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
environment:
- SHELL=/bin/bash
2020-03-05 16:09:03 +00:00
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:
postgresql-vol: