forked from govCMS/GovCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
76 lines (64 loc) · 1.91 KB
/
docker-compose.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: '2.3'
x-volumes:
&default-volumes
volumes:
- files:/app/web/sites/default/files
- ./:/app/web/profiles/contrib/govcms:delegated
x-environment:
&default-environment
LAGOON_ROUTE: ${LOCALDEV_URL:-http://govcms9.docker.amazee.io}
volumes:
files: {}
services:
cli: # cli container, will be used for executing composer and any local commands (drush, drupal, etc.)
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/govcms8:edge-9.x
<< : *default-volumes # loads the defined volumes from the top
environment:
<< : *default-environment
test:
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/test:edge-9.x
<< : *default-volumes
depends_on:
- cli
environment:
<< : *default-environment
nginx:
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/nginx-drupal:edge-9.x
<< : *default-volumes
environment:
<< : *default-environment
networks:
- amazeeio-network
- default
php:
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/php:edge-9.x
<< : *default-volumes
environment:
<< : *default-environment
mariadb:
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/mariadb-drupal:edge-9.x
ports:
- "3306" # Find port on host with `docker-compose port mariadb 3306`
environment:
<< : *default-environment
solr:
# To be changed when govcms9lagoon images become available.
image: govcms8lagoon/solr:edge-9.x
ports:
- "8983" # Find port on host with `docker-compose port solr 8983`
environment:
<< : *default-environment
chrome:
image: selenium/standalone-chrome
shm_size: '1gb'
depends_on:
- test
<< : *default-volumes
networks:
amazeeio-network:
external: true