mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
version: "3.7"
|
|
services:
|
|
mariadb:
|
|
image: mariadb:10.6
|
|
command:
|
|
- --character-set-server=utf8mb4
|
|
- --collation-server=utf8mb4_unicode_ci
|
|
- --skip-character-set-client-handshake
|
|
- --skip-innodb-read-only-compressed # Temporary fix for MariaDB 10.6
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=123
|
|
- MYSQL_USER=root
|
|
# Sometimes db initialization takes longer than 10 seconds and site-creator goes away.
|
|
# Frappe doesn't use CONVERT_TZ() function that requires time zone info, so we can just skip it.
|
|
- MYSQL_INITDB_SKIP_TZINFO=1
|
|
volumes:
|
|
- 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
|
|
|
|
redis-cache:
|
|
image: redis:alpine
|
|
|
|
redis-queue:
|
|
image: redis:alpine
|
|
|
|
redis-socketio:
|
|
image: redis:alpine
|
|
|
|
frappe:
|
|
image: frappe/bench:latest
|
|
command: sleep infinity
|
|
environment:
|
|
- SHELL=/bin/bash
|
|
volumes:
|
|
- ..:/workspace:cached
|
|
working_dir: /workspace/development
|
|
ports:
|
|
- "8000-8005:8000-8005"
|
|
- "9000-9005:9000-9005"
|
|
|
|
volumes:
|
|
mariadb-vol:
|
|
postgresql-vol:
|