This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
101 lines (100 loc) · 2.4 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: '2'
services:
mariadb:
image: mariadb:10.1
environment:
MYSQL_DATABASE: "basis"
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
postgres:
image: postgres:latest
environment:
POSTGRES_DB: "basis"
POSTGRES_PASSWORD: ""
redis:
image: redis
php5-fpm:
build:
context: ./storage/build/scripts/php_5.6-fpm
image: audithsoftworks/basis:php_5.6-fpm
volumes:
- .:/home/basis
working_dir: /home/basis
links:
- mariadb
- postgres
- redis
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1"
REDIS_PORT: 6379
php7-fpm:
build:
context: ./storage/build/scripts/php_7-fpm
image: audithsoftworks/basis:php_7-fpm
volumes:
- .:/home/basis
working_dir: /home/basis
links:
- mariadb
- postgres
- redis
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1"
REDIS_PORT: 6379
nginxForPhp5:
build:
context: ./storage/build/scripts/nginx
image: audithsoftworks/basis:nginx
volumes:
- ./storage/build/configs/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- .:/home/basis
working_dir: /home/basis
links:
- php5-fpm:phpFpm
nginxForPhp7:
build:
context: ./storage/build/scripts/nginx
image: audithsoftworks/basis:nginx
volumes:
- ./storage/build/configs/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- .:/home/basis
working_dir: /home/basis
links:
- php7-fpm:phpFpm
php5-cli:
build:
context: ./storage/build/scripts/php_5.6
image: audithsoftworks/basis:php_5.6
volumes:
- .:/home/basis
- ./storage/build/configs/crontabs:/var/spool/cron/crontabs
working_dir: /home/basis
links:
- mariadb
- postgres
- redis
- nginxForPhp5:nginx
environment:
XDEBUG_CONFIG: "remote_host=172.18.0.1"
REDIS_PORT: 6379
WORKDIR: "/home/basis"
stdin_open: true
tty: true
php7-cli:
build:
context: ./storage/build/scripts/php_7
image: audithsoftworks/basis:php_7
volumes:
- .:/home/basis
- ./storage/build/configs/crontabs:/var/spool/cron/crontabs
working_dir: /home/basis
links:
- mariadb
- postgres
- redis
- nginxForPhp7:nginx
environment:
XDEBUG_CONFIG: "remote_host=172.18.0.1"
REDIS_PORT: 6379
WORKDIR: "/home/basis"
stdin_open: true
tty: true