This repository was archived by the owner on May 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,12 @@ SYMFONYVERSION=3
21
21
22
22
#
23
23
# This setting defines what the hostname will be you can browse your Symfony
24
- # app. The example configuration will be give you http://application.dev .
24
+ # app. The example configuration will be give you http://application.test .
25
25
#
26
- BASEHOST=application.dev
27
- # when you need additional hosts to point to your environment you can add them
28
- # comma separated to the EXTRAHOSTS variable, when not needed you can just
29
- # leave this commented
30
- #EXTRAHOSTS=api.application.dev,demo.application.dev
26
+ BASEHOST=application.test
27
+ # comma separated to the EXTRAHOSTS variable, when not needed you must at least
28
+ # add something, let us default to www.${BASEHOST}
29
+ EXTRAHOSTS=www.application.test
31
30
32
31
#
33
32
# Choose whatever you want to use as default mysql root password.
@@ -45,7 +44,7 @@ APPLICATION=../application
45
44
# profiling output of you application. To visualize your profiling output see
46
45
# https://github.com/BlackIkeEagle/docker-compose-xhgui
47
46
#
48
- DEVELOPMENT=noprofile
47
+ DEVELOPMENT=1
49
48
50
49
#
51
50
# Set the default window manager when running the environment
Original file line number Diff line number Diff line change @@ -4,21 +4,21 @@ services:
4
4
redis :
5
5
image : redis:alpine
6
6
environment :
7
- - DOMAIN_NAME=redis.${BASEHOST:-application.dev }
7
+ - DOMAIN_NAME=redis.${BASEHOST:-application.test }
8
8
network_mode : bridge
9
9
10
10
mysql :
11
11
image : mysql
12
12
environment :
13
13
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD:-toor}
14
- - DOMAIN_NAME=mysql.${BASEHOST:-application.dev }
14
+ - DOMAIN_NAME=mysql.${BASEHOST:-application.test }
15
15
command : --innodb-doublewrite=0
16
16
network_mode : bridge
17
17
18
18
mailcatcher :
19
19
image : schickling/mailcatcher
20
20
environment :
21
- - DOMAIN_NAME=mailcatcher.${BASEHOST:-application.dev }
21
+ - DOMAIN_NAME=mailcatcher.${BASEHOST:-application.test }
22
22
network_mode : bridge
23
23
24
24
application :
@@ -38,7 +38,7 @@ services:
38
38
nginx :
39
39
image : dockerwest/nginx-symfony:${SYMFONYVERSION:-3}-${NGINXVERSION:-stable}
40
40
environment :
41
- - VIRTUAL_HOST=${BASEHOST:-application.dev},www.${BASEHOST:-application.dev },${EXTRAHOSTS}
41
+ - VIRTUAL_HOST=${BASEHOST:-application.test },${EXTRAHOSTS}
42
42
- VIRTUAL_PORT=80
43
43
volumes :
44
44
- ${APPLICATION:-../application}:/phpapp
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ services:
4
4
redis :
5
5
image : redis:alpine
6
6
environment :
7
- - DOMAIN_NAME=redis.${BASEHOST:-application.dev }
7
+ - DOMAIN_NAME=redis.${BASEHOST:-application.test }
8
8
9
9
mysql :
10
10
image : mysql
11
11
environment :
12
12
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD:-toor}
13
- - DOMAIN_NAME=mysql.${BASEHOST:-application.dev }
13
+ - DOMAIN_NAME=mysql.${BASEHOST:-application.test }
14
14
command : --innodb-doublewrite=0
15
15
16
16
mailcatcher :
17
17
image : schickling/mailcatcher
18
18
environment :
19
- - DOMAIN_NAME=mailcatcher.${BASEHOST:-application.dev }
19
+ - DOMAIN_NAME=mailcatcher.${BASEHOST:-application.test }
20
20
21
21
application :
22
22
image : dockerwest/php-symfony:${PHPVERSION:-7.1}
@@ -34,7 +34,7 @@ services:
34
34
nginx :
35
35
image : dockerwest/nginx-symfony:${SYMFONYVERSION:-3}-${NGINXVERSION:-stable}
36
36
environment :
37
- - VIRTUAL_HOST=${BASEHOST:-application.dev},www.${BASEHOST:-application.dev },${EXTRAHOSTS}
37
+ - VIRTUAL_HOST=${BASEHOST:-application.test },${EXTRAHOSTS}
38
38
volumes :
39
39
- ${APPLICATION:-../application}:/phpapp
40
40
links :
You can’t perform that action at this time.
0 commit comments