mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
parent
a8dcbd7a19
commit
ad4c2fac22
1 changed files with 23 additions and 23 deletions
|
|
@ -1,33 +1,33 @@
|
|||
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
|
||||
# volumes:
|
||||
# - mariadb-data:/var/lib/mysql
|
||||
|
||||
# Enable PostgreSQL only if you use it, see development/README.md for more information.
|
||||
postgresql:
|
||||
image: postgres:11.8
|
||||
mariadb:
|
||||
image: docker.io/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:
|
||||
POSTGRES_PASSWORD: 123
|
||||
MYSQL_ROOT_PASSWORD: 123
|
||||
volumes:
|
||||
- postgresql-data:/var/lib/postgresql/data
|
||||
- mariadb-data:/var/lib/mysql
|
||||
|
||||
# # Enable PostgreSQL only if you use it, see development/README.md for more information.
|
||||
# postgresql:
|
||||
# image: postgres:11.8
|
||||
# environment:
|
||||
# POSTGRES_PASSWORD: 123
|
||||
# volumes:
|
||||
# - postgresql-data:/var/lib/postgresql/data
|
||||
|
||||
redis-cache:
|
||||
image: redis:alpine
|
||||
image: docker.io/redis:alpine
|
||||
|
||||
redis-queue:
|
||||
image: redis:alpine
|
||||
image: docker.io/redis:alpine
|
||||
|
||||
frappe:
|
||||
image: frappe/bench:latest
|
||||
image: docker.io/frappe/bench:latest
|
||||
command: sleep infinity
|
||||
environment:
|
||||
- SHELL=/bin/bash
|
||||
|
|
@ -46,7 +46,7 @@ services:
|
|||
# it can find file "cypress.json" and show integration specs
|
||||
# https://on.cypress.io/command-line#cypress-open
|
||||
entrypoint: 'sleep infinity'
|
||||
image: "cypress/included:latest"
|
||||
image: "docker.io/cypress/included:latest"
|
||||
#command: sleep infinity
|
||||
environment:
|
||||
- SHELL=/bin/bash
|
||||
|
|
@ -65,5 +65,5 @@ services:
|
|||
- ..:/workspace:z,cached
|
||||
network_mode: "host"
|
||||
volumes:
|
||||
#mariadb-data:
|
||||
postgresql-data:
|
||||
mariadb-data:
|
||||
#postgresql-data:
|
||||
|
|
|
|||
Loading…
Reference in a new issue