-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
101 lines (93 loc) · 2.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
version: '3'
services:
fpm:
# build:
# context: php${PHP_VERSION}/fpm
# args:
# PHP_ENABLE_AMQP: ${PHP_ENABLE_AMQP}
# PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
# PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
# PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
image: readymadehost/laravel-dev-docker-php${PHP_VERSION}-fpm:${DOCKER_TAG}
environment:
PHP_ENABLE_AMQP: ${PHP_ENABLE_AMQP}
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
ports:
- ${PHP_FPM_PORT}:9000
volumes:
- ./project:/var/www/project
depends_on:
- mariadb
# - mongodb
# - redis
cli:
# build:
# context: php${PHP_VERSION}/cli
# args:
# NODE_VERSION: ${NODE_VERSION}
# PHP_ENABLE_AMQP: ${PHP_ENABLE_AMQP}
# PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
# PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
# PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
image: readymadehost/laravel-dev-docker-php${PHP_VERSION}-cli:${DOCKER_TAG}
environment:
PHP_ENABLE_AMQP: ${PHP_ENABLE_AMQP}
PHP_ENABLE_REDIS: ${PHP_ENABLE_REDIS}
PHP_ENABLE_XDEBUG: ${PHP_ENABLE_XDEBUG}
PHP_ENABLE_MONGODB: ${PHP_ENABLE_MONGODB}
working_dir: /var/www/project
volumes:
- ./project:/var/www/project
depends_on:
- mariadb
# - mongodb
# - redis
nginx:
image: nginx:alpine
ports:
- ${NGINX_PORT}:80
volumes:
- ./project:/var/www/project
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:cached
environment:
- PHP_FPM_PORT=${PHP_FPM_PORT}
depends_on:
- fpm
mariadb:
image: mariadb:${MARIADB_VERSION}
ports:
- ${MARIADB_PORT}:3306
volumes:
- ./data/mariadb:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD}
- MYSQL_DATABASE=${MARIADB_DATABASE_NAME}
# - 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
# mongodb:
# image: mongo:${MONGODB_VERSION}
# ports:
# - ${MONGODB_PORT}:27017
# environment:
# MONGO_INITDB_ROOT_USERNAME: ${MONGODB_ROOT_USERNAME}
# MONGO_INITDB_ROOT_PASSWORD: ${MONGODB_ROOT_PASSWORD}
# volumes:
# - ./data/mongodb:/data/db
# redis:
# image: redis:alpine
# mailcatcher:
# image: sj26/mailcatcher
# ports:
# - ${MAILCATCHER_PORT}:1080