mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
92fa8c1d42
Former-commit-id: e70428e7b3
31 lines
486 B
YAML
31 lines
486 B
YAML
version: '2'
|
|
services:
|
|
mariadb:
|
|
image: "mariadb"
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=${DB_PASS}
|
|
- MYSQL_USER=root
|
|
volumes:
|
|
- ./conf/mariadb-conf.d:/etc/mysql/conf.d
|
|
ports:
|
|
- "3306:3306"
|
|
|
|
redis:
|
|
image: "redis:alpine"
|
|
|
|
frappe:
|
|
volumes:
|
|
- ./frappe:/home/frappe
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
stdin_open: true
|
|
tty: true
|
|
links:
|
|
- redis
|
|
- mariadb
|
|
depends_on:
|
|
- mariadb
|
|
- redis
|
|
|