-
Notifications
You must be signed in to change notification settings - Fork 0
/
docksal.env
28 lines (23 loc) · 1.11 KB
/
docksal.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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:2.1-apache2.4'
#DB_IMAGE='docksal/db:1.1-mysql-5.7'
#CLI_IMAGE='docksal/cli:2.1-php7.1'
# Override virtual host (matches project folder name by default)
#VIRTUAL_HOST=symfony.docksal
# Docksal configuration.
DOCROOT=public
# MySQL settings.
# 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