-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
55 lines (49 loc) · 1.01 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
version: "3"
services:
database:
container_name: database
image: mysql:5.6
restart: always
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
volumes:
- db-data:/var/lib/mysql
mediawiki:
container_name: mediawiki
image: tfwiki/mediawiki:local
build:
context: .
dockerfile: Dockerfile
restart: always
depends_on:
- database
- memcached
volumes:
- mediawiki-media:/var/www/html/w/images
env_file: .env
varnish:
container_name: varnish
restart: always
depends_on:
- mediawiki
environment:
- VIRTUAL_HOST=tfwiki.localhost
- BACKEND_HOST=mediawiki
image: tfwiki/varnish:local
memcached:
container_name: memcached
image: memcached
nginx-proxy:
container_name: nginx-proxy
image: jwilder/nginx-proxy:latest
depends_on:
- varnish
ports:
- 80:80
- 443:443
volumes:
- ./certs:/etc/nginx/certs:ro
- /var/run/docker.sock:/tmp/docker.sock:ro
volumes:
db-data:
mediawiki-media: