-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.example.yml
67 lines (57 loc) · 1.37 KB
/
docker-compose.example.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
version: '3.2'
services:
nginx:
image: "${NGINX_VERSION}"
ports:
- 80:80
- 443:443
- 443:443/udp
volumes:
- ./log/nginx:/var/log/nginx
- ./etc/nginx/nginx.conf:/etc/nginx/nginx.conf
- ./etc/nginx/conf.d:/etc/nginx/conf.d
- ./etc/nginx/ssl:/etc/nginx/ssl
- ./wwwroot:/var/www
environment:
ENABLE_CRONTAB: "true"
TZ: ${TZ}
restart: on-failure
php-fpm:
image: "${PHP_VERSION}"
volumes:
- ./etc/php-fpm/php-fpm.ini:/usr/local/etc/php-fpm.ini
- ./etc/php-fpm/crontabs:/etc/crontabs
- ./wwwroot:/var/www
environment:
ENABLE_CRONTAB: "true"
TZ: ${TZ}
restart: on-failure
mysql:
image: "${MYSQL_VERSION}"
command: --default-authentication-plugin=mysql_native_password
volumes:
- ./etc/mysql/my.cnf:/etc/my.cnf
- ./etc/mysql/my.cnf.d:/etc/my.cnf.d
- ./data/mysql/data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_ROOT_HOST: "%"
TZ: ${TZ}
restart: on-failure
phpmyadmin:
image: "${PMA_VERSION}"
ports:
- 8080:80
depends_on:
- mysql
environment:
PMA_HOST: mysql
TZ: ${TZ}
restart: on-failure
redis:
image: "${REDIS_VERSION}"
volumes:
- ./data/redis/data:/data:rw
environment:
TZ: ${TZ}
restart: on-failure