forked from TEN7-Archive/flight-deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.d8-apache.yml
65 lines (65 loc) · 1.34 KB
/
docker-compose.d8-apache.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
version: '3'
services:
web:
image: ten7/flight-deck-web:latest
ports:
- "80:80"
env_file:
- .env
volumes:
- ./src:/var/www/html:cached
- ./sync:/var/www/sync:cached
db:
image: ten7/flight-deck-db
ports:
- 3306:3306
env_file:
- .env
volumes:
- /var/lib/mysql
- ./db-backups:/tmp/db-backups:cached
memcached:
image: memcached:1.4-alpine
pma:
image: phpmyadmin/phpmyadmin
environment:
PMA_HOST: db
PMA_USER: root
PMA_PASSWORD: ${MYSQL_ROOT_PASSWORD}
PHP_UPLOAD_MAX_FILESIZE: 1G
PHP_MAX_INPUT_VARS: 1G
ports:
- "8001:80"
env_file:
- .env
mailhog:
image: mailhog/mailhog
ports:
- "8002:8025"
# solr:
# image: ten7/flight-deck-solr:5.5
# env_file:
# - .env
# ports:
# - "8003:8983"
# # Uncomment the following to use a custom schema
# # volumes:
# # - ./solr-conf:/solr-conf
# varnish:
# image: ten7/flight-deck-varnish:4.0
# depends_on:
# - web
# env_file:
# - .env
# ports:
# - "8004:6081" # HTTP Proxy
# - "8005:6082" # Control terminal
#
## Webgrind lets you example XDebug profiling files without kcachegrind.
#
# webgrind:
# image: clue/webgrind
# ports:
# - "8006:80"
# volumes:
# - ./src:/tmp