38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
# This is a shared configuration file that is intended to be stored in the project repo.
|
|
# To override a variable locally:
|
|
# - create .docksal/docksal-local.env file and local variable overrides there
|
|
# - add .docksal/docksal-local.env to .gitignore
|
|
|
|
# Use the default Docksal stack
|
|
DOCKSAL_STACK=default
|
|
|
|
# Lock images versions for LAMP services
|
|
# This will prevent images from being updated when Docksal is updated
|
|
#WEB_IMAGE='docksal/web:x.x-apache2.4'
|
|
#DB_IMAGE='docksal/db:x.x-mysql-5.6'
|
|
#CLI_IMAGE='docksal/cli:x.x-php7.1'
|
|
|
|
# Docksal configuration.
|
|
COMPOSE_PROJECT_NAME=wordcamp2019
|
|
#VIRTUAL_HOST=wordpress.docksal
|
|
DOCROOT=.
|
|
|
|
# MySQL settings.
|
|
MYSQL_ROOT_PASSWORD=root
|
|
MYSQL_USER=user
|
|
MYSQL_PASSWORD=user
|
|
MYSQL_DATABASE=default
|
|
# MySQL will be exposed on a random port. Use "fin ps" to check the port.
|
|
# To have a static MySQL port assigned, copy the line below into the .docksal/docksal-local.env file
|
|
# and replace the host port "0" with a unique host port number (e.g. MYSQL_PORT_MAPPING='33061:3306')
|
|
MYSQL_PORT_MAPPING='0:3306'
|
|
|
|
# Enable/disable xdebug
|
|
# To override locally, copy the two lines below into .docksal/docksal-local.env and adjust as necessary
|
|
XDEBUG_ENABLED=0
|
|
|
|
# Wordpress settings
|
|
WP_ADMIN_USER=admin
|
|
WP_ADMIN_PASS=admin
|
|
WP_ADMIN_EMAIL=info@example.com
|