forked from fred-lab/Docker_Symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.dist
30 lines (25 loc) · 798 Bytes
/
.env.dist
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
29
30
## Docker variable environment
# Since .env is now committed with Symfony, you should either add .env to .gitignore
# or rename this file and change is name inside the env_file variable of the docker-compose.yml file for each services
# to avoid sensibles informations like password to be expose on your repository.
# User
# Get the user id & group id of the owner of the project dir with "ls -ln" and paste the result here. This will update the
# project dir permission inside the container
HOST_USER=1000
HOST_USERGROUP=987
# Front
FRONT_PORT=80
# Engine
ENGINE_PORT=9000
PHP_XDEBUG_VERSION=2.9.6
# Database
DB_ROOT_PASSWORD=root
DB_DATABASE=database
DB_USER=username
DB_PASSWORD=pwd
DB_PORT=3306
# Maildev
# SMTP port to catch emails
SMTP_PORT=1025
#Port to run the Web GUI
WEP_PORT=1080