@@ -9,9 +9,7 @@ x-volumes:
9
9
x-environment :
10
10
&default-environment
11
11
# Route that should be used locally, if you are using pygmy, this route *must* end with .docker.amazee.io
12
- LAGOON_ROUTE : &default-url http://SITENAME.docker.amazee.io
13
- COMPOSER_VERSION : ' 2.0.4'
14
- COMPOSER_HASH_SHA256 : ' 1cdc74f74965908d0e98d00feeca37c23b86da51170a3a11a1538d89ff44d4dd'
12
+ LAGOON_ROUTE : &default-url http://${COMPOSE_PROJECT_NAME:-taoti-amazee}.docker.amazee.io
15
13
# Uncomment if you like to have the system behave like in production
16
14
# LAGOON_ENVIRONMENT_TYPE: production
17
15
# Uncomment to enable xdebug and then restart via `docker-compose up -d`
@@ -34,7 +32,7 @@ services:
34
32
build :
35
33
context : .
36
34
dockerfile : lagoon/cli.dockerfile
37
- image : &cli-image SITENAME -cli # this image will be reused as `CLI_IMAGE` in subsequent Docker builds
35
+ image : &cli-image ${COMPOSE_PROJECT_NAME:-taoti-amazee}. -cli # this image will be reused as `CLI_IMAGE` in subsequent Docker builds
38
36
labels :
39
37
# Lagoon Labels
40
38
lagoon.type : cli-persistent
@@ -92,7 +90,7 @@ services:
92
90
<< : *default-environment # loads the defined environment variables from the top
93
91
94
92
mariadb :
95
- image : uselagoon/mariadb-drupal :latest
93
+ image : uselagoon/mysql-8.0 :latest
96
94
labels :
97
95
lagoon.type : mariadb
98
96
lando.type : mariadb-drupal
@@ -101,16 +99,9 @@ services:
101
99
<< : *default-user # uses the defined user from top
102
100
environment :
103
101
<< : *default-environment
104
-
105
- nodebuilder :
106
- env_file :
107
- - .lagoon.env
108
- profiles :
109
- - nodebuilder # setup a profile so that the node builder doesn't run by default
110
- image : uselagoon/node-14-builder
111
- labels :
112
- lagoon.type : none
113
- << : *default-volumes # loads the defined volumes from the top
102
+ MYSQL_DATABASE : drupal
103
+ MYSQL_USER : drupal
104
+ MYSQL_PASSWORD : drupal
114
105
115
106
redis :
116
107
image : amazeeio/redis:6-latest
@@ -135,6 +126,8 @@ services:
135
126
- cli
136
127
environment :
137
128
<< : *default-environment
129
+ volumes :
130
+ - search:/var/solr
138
131
139
132
networks :
140
133
amazeeio-network :
0 commit comments