-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
103 lines (93 loc) · 2.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: "2.3"
x-volumes:
&default-volumes # Define all volumes you would like to have real-time mounted into the docker containers
volumes:
- .:/app:delegated
- files:/app/web/sites/default/files
x-environment: &default-environment
LAGOON_ROUTE: &default-url http://${COMPOSE_PROJECT_NAME:-government-of-yukon-recruitment-marketing-drupal}.lagoon-prd.acromedia.com
# Uncomment if you like to have the system behave like in production
#LAGOON_ENVIRONMENT_TYPE: production
# Uncomment to enable xdebug and then restart via `docker-compose up -d`
#XDEBUG_ENABLE: "true"
x-user: &default-user
# The default user under which the containers should run.
# Change this if you are on linux and run with another user than id `1000`
user: "1000"
volumes:
files: {}
services:
cli:
build:
context: .
dockerfile: lagoon/cli.dockerfile
image: &cli-image ${COMPOSE_PROJECT_NAME:-government-of-yukon-recruitment-marketing-drupal}-cli
labels:
lagoon.type: cli-persistent
lagoon.persistent.name: nginx
lagoon.persistent: /app/web/sites/default/files/
lando.type: php-cli-drupal
<<: *default-volumes
user: root
volumes_from:
- container:amazeeio-ssh-agent
environment:
<<: *default-environment
nginx:
build:
context: .
dockerfile: lagoon/nginx.dockerfile
args:
CLI_IMAGE: *cli-image
labels:
lagoon.type: nginx-php-persistent
lagoon.persistent: /app/web/sites/default/files/
lando.type: nginx-drupal
<<: [*default-volumes, *default-user]
depends_on:
- cli
environment:
<<: *default-environment
LAGOON_LOCALDEV_URL: *default-url
networks:
- amazeeio-network
- default
php:
build:
context: .
dockerfile: lagoon/php.dockerfile
args:
CLI_IMAGE: *cli-image
labels:
lagoon.type: nginx-php-persistent
lagoon.name: nginx
lagoon.persistent: /app/web/sites/default/files/
lando.type: php-fpm
<<: [*default-volumes, *default-user]
depends_on:
- cli
environment:
<<: *default-environment
mariadb:
image: uselagoon/mariadb-10.5-drupal:latest
labels:
lagoon.type: mariadb
lando.type: mariadb-drupal
ports:
- "3306" # exposes the port 3306 with a random local port, find it with `docker-compose port mariadb 3306`
<<: *default-user
environment:
<<: *default-environment
redis:
image: uselagoon/redis-6:latest
labels:
lagoon.type: redis
lando.type: redis
ports:
- "6379"
<<: *default-user
environment:
<<: *default-environment
networks:
amazeeio-network:
external: true