mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-09 23:00:56 +00:00
Move devcontainer settings to devcontainer.json
This commit is contained in:
parent
47f216af83
commit
cea7548619
@ -3,7 +3,8 @@
|
||||
"appPort": [8000, 9000, 6787],
|
||||
"remoteUser": "frappe",
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash"
|
||||
"terminal.integrated.shell.linux": "/bin/bash",
|
||||
"debug.node.autoAttach": "disabled"
|
||||
},
|
||||
"dockerComposeFile": "./docker-compose.yml",
|
||||
"service": "frappe",
|
||||
|
@ -8,22 +8,17 @@ services:
|
||||
- --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
|
||||
MYSQL_ROOT_PASSWORD: 123
|
||||
volumes:
|
||||
- mariadb-vol:/var/lib/mysql
|
||||
- mariadb-data:/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
|
||||
# POSTGRES_PASSWORD: 123
|
||||
# volumes:
|
||||
# - postgresql-vol:/var/lib/postgresql/data
|
||||
# - postgresql-data:/var/lib/postgresql/data
|
||||
|
||||
redis-cache:
|
||||
image: redis:alpine
|
||||
@ -43,9 +38,9 @@ services:
|
||||
- ..:/workspace:cached
|
||||
working_dir: /workspace/development
|
||||
ports:
|
||||
- "8000-8005:8000-8005"
|
||||
- "9000-9005:9000-9005"
|
||||
- 8000-8005:8000-8005
|
||||
- 9000-9005:9000-9005
|
||||
|
||||
volumes:
|
||||
mariadb-vol:
|
||||
postgresql-vol:
|
||||
mariadb-data:
|
||||
postgresql-data:
|
||||
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"debug.node.autoAttach": "disabled"
|
||||
}
|
Loading…
Reference in New Issue
Block a user