-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
73 lines (72 loc) · 1.78 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
version: '3.8'
services:
updatecerts:
image: vjedev/certupdater:latest
volumes:
- certs:/certs
- mysqlconf:/mysqlconf
landingpage:
image: vjedev/landingpage:latest
volumes:
- ./websites:/websites
databaseimportexport:
image: vjedev/database-import-export:latest
volumes:
- ./websites:/websites
depends_on:
- mysql
web:
image: nginx:latest
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/nginx.conf
- certs:/certs
- ./websites:/websites
depends_on:
- updatecerts
php:
build:
context: .
dockerfile: PHP.Dockerfile
volumes:
- ./websites:/websites
mysql:
image: mariadb:latest
environment:
MYSQL_ROOT_PASSWORD: 'v.je'
MYSQL_USER: 'v.je'
MYSQL_PASSWORD: 'v.je'
volumes:
- mysqldata:/var/lib/mysql
- certs:/ssl
- mysqlconf:/etc/mysql/conf.d/
ports:
- 3306:3306
phpunit:
build:
context: .
dockerfile: PHP.Dockerfile
working_dir: /websites/default
entrypoint: 'vendor/bin/phpunit'
volumes:
- ./websites:/websites
profiles:
- phpunit
composer:
build:
context: .
dockerfile: PHP.Dockerfile
working_dir: /websites/default
entrypoint: /usr/bin/composer
volumes:
- ./websites:/websites
profiles:
- composer
maildev:
image: maildev/maildev:latest
volumes:
mysqldata: {}
certs: {}
mysqlconf: {}