Add data directory

This commit is contained in:
Christoph Haas 2019-01-02 11:22:31 +01:00
parent 02c5694550
commit b034e432ef
3 changed files with 7 additions and 4 deletions

View File

@ -16,7 +16,7 @@ CONTAINER_DB_NAME=db
# Path to store your database
#DB_PATH=/path/to/your/local/database/folder
DB_PATH=./../data/db
DB_PATH=./data/db
# Root password for your database
MYSQL_ROOT_PASSWORD=root_password
@ -37,8 +37,8 @@ LOGGING_OPTIONS_MAX_SIZE=200k
# Path to store your wordpress files
#WP_CORE=/path/to/your/wordpress/core/files
#WP_CONTENT=/path/to/your/wordpress/wp-content
WP_CORE=./../data/site/wordpress-core
WP_CONTENT=./../data/site/wp-content
WP_CORE=./data/site/wordpress-core
WP_CONTENT=./data/site/wp-content
# Table prefix
WORDPRESS_TABLE_PREFIX=wp_

2
.gitignore vendored
View File

@ -1 +1 @@
.env
.env

3
data/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*
*/
!.gitignore