-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathdocker-compose.yml
File metadata and controls
55 lines (55 loc) · 1.38 KB
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
###################################
# Basic Services #
# for Development #
# #
# Do not use for Production! #
# #
# Mediengruppe KLAMBT #
# TimWeyand #
# #
###################################
version: '2'
services:
drupal_memcached:
image: memcached:alpine
container_name: drupal_memcached
drupal_solr:
image: solr:alpine
container_name: drupal_solr
ports:
- "8983:8983"
drupal_database:
image: mysql:5.7
container_name: drupal_database
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=drupal8
- MYSQL_USER=drupal8
- MYSQL_PASSWORD=drupal8
phpmyadmin:
image: phpmyadmin/phpmyadmin:latest
container_name: drupal_phpmyadmin
ports:
- "81:80"
links:
- drupal_database
webserver:
image: klambt/docker_drupal:latest
container_name: docker_drupal
links:
- drupal_memcached
- drupal_solr
- drupal_database
drupal_varnish:
image: million12/varnish:latest
container_name: drupal_varnish
environment:
- VCL_CONFIG=/var/www/private/varnish.vcl
volumes_from:
- webserver:ro
links:
- webserver
ports:
- "80:80"