forked from behance/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
83 lines (83 loc) · 2.47 KB
/
docker-compose.yml
File metadata and controls
83 lines (83 loc) · 2.47 KB
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
ubuntu:
build: .
ports:
- '8080:8080'
environment:
CFG_APP_DEBUG: 1
SERVER_LOG_MINIMAL: 1
PHP_FPM_MEMORY_LIMIT: 257M
PHP_FPM_MAX_EXECUTION_TIME: 61
PHP_FPM_UPLOAD_MAX_FILESIZE: 100M
SERVER_MAX_BODY_SIZE: 100m
SERVER_APP_NAME: docker-test
REPLACE_NEWRELIC_APP: abcdefg
REPLACE_NEWRELIC_LICENSE: hijklmno
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
volumes:
- ./container/root/app:/app
- ./container/root/tests/php-fpm/base.goss.yaml:/tests/php-fpm/base.goss.yaml
- ./container/root/tests/php-fpm/ubuntu.goss.yaml:/tests/php-fpm/ubuntu.goss.yaml
alpine:
build: .
dockerfile: Dockerfile-alpine
ports:
- '8081:8080'
environment:
CFG_APP_DEBUG: 1
SERVER_LOG_MINIMAL: 1
PHP_FPM_MEMORY_LIMIT: 257M
PHP_FPM_MAX_EXECUTION_TIME: 61
PHP_FPM_UPLOAD_MAX_FILESIZE: 100M
SERVER_MAX_BODY_SIZE: 100m
SERVER_APP_NAME: docker-test
REPLACE_NEWRELIC_APP: abcdefg
REPLACE_NEWRELIC_LICENSE: hijklmno
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
volumes:
- ./container/root/app:/app
- ./container/root/tests/php-fpm/base.goss.yaml:/tests/php-fpm/base.goss.yaml
- ./container/root/tests/php-fpm/alpine.goss.yaml:/tests/php-fpm/alpine.goss.yaml
edge:
build: .
dockerfile: Dockerfile-edge
ports:
- '8082:8080'
environment:
CFG_APP_DEBUG: 1
SERVER_LOG_MINIMAL: 1
PHP_FPM_MEMORY_LIMIT: 257M
PHP_FPM_MAX_EXECUTION_TIME: 61
PHP_FPM_UPLOAD_MAX_FILESIZE: 100M
SERVER_MAX_BODY_SIZE: 100m
SERVER_APP_NAME: docker-test
REPLACE_NEWRELIC_APP: abcdefg
REPLACE_NEWRELIC_LICENSE: hijklmno
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
volumes:
- ./container/root/app:/app
- ./container/root/tests/php-fpm/base.goss.yaml:/tests/php-fpm/base.goss.yaml
- ./container/root/tests/php-fpm/beta.goss.yaml:/tests/php-fpm/beta.goss.yaml
legacy:
build: .
dockerfile: Dockerfile-legacy
ports:
- '8083:8080'
environment:
CFG_APP_DEBUG: 1
SERVER_LOG_MINIMAL: 1
PHP_FPM_MEMORY_LIMIT: 257M
PHP_FPM_MAX_EXECUTION_TIME: 61
PHP_FPM_UPLOAD_MAX_FILESIZE: 100M
SERVER_MAX_BODY_SIZE: 100m
SERVER_APP_NAME: docker-test
REPLACE_NEWRELIC_APP: abcdefg
REPLACE_NEWRELIC_LICENSE: hijklmno
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
volumes:
- ./container/root/app:/app
- ./container/root/tests/php-fpm/base.goss.yaml:/tests/php-fpm/base.goss.yaml
- ./container/root/tests/php-fpm/beta.goss.yaml:/tests/php-fpm/legacy.goss.yaml