-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·74 lines (68 loc) · 1.73 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
74
version: '3'
services:
fpm:
build:
context: php${PHP_VERSION}/fpm
args:
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
image: readymadehost/wordpress-dev-docker-php${PHP_VERSION}-fpm:${DOCKER_TAG}
environment:
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
ports:
- ${PHP_FPM_PORT}:9000
volumes:
- ./project:/var/www/project
depends_on:
- mariadb
# - redis
cli:
build:
context: php${PHP_VERSION}/cli
args:
NODE_VERSION: ${NODE_VERSION}
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
image: readymadehost/wordpress-dev-docker-php${PHP_VERSION}-cli:${DOCKER_TAG}
environment:
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
working_dir: /var/www/project
volumes:
- ./project:/var/www/project
depends_on:
- mariadb
# - redis
nginx:
image: nginx:alpine
ports:
- ${NGINX_PORT}:80
volumes:
- ./project:/var/www/project
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:cached
depends_on:
- fpm
mariadb:
image: mariadb:${MARIADB_VERSION}
ports:
- ${MARIADB_PORT}:3306
volumes:
- ./data/mariadb:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=project
# - MYSQL_USER=admin
# - MYSQL_PASSWORD=admin
- TERM=meh
phpmyadmin:
image: phpmyadmin/phpmyadmin
environment:
- PMA_HOST=mariadb
# - PMA_ARBITRARY=1
links:
- mariadb
ports:
- ${PHPMYADMIN_PORT}:80
# redis:
# image: redis:alpine