11version : " 3"
22services :
3- web :
3+ wordpress :
44 build :
55 context : .
66 dockerfile : ./docker/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
@@ -9,7 +9,25 @@ services:
99 - mysql
1010 - redis
1111 - memcached
12+ environment :
13+ - WORDPRESS_DB_PASSWORD=super_secret_password
14+ - WORDPRESS_DEBUG=1
15+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
16+ # more here https://hub.docker.com/_/wordpress
17+ ports :
18+ - " 80:80"
19+ volumes :
20+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
1221
22+ wordpress5.5 :
23+ build :
24+ context : .
25+ dockerfile : ./docker/wp5.5/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
26+ links :
27+ - crowdsec
28+ - mysql
29+ - redis
30+ - memcached
1331 environment :
1432 - WORDPRESS_DB_PASSWORD=super_secret_password
1533 - WORDPRESS_DEBUG=1
@@ -19,6 +37,121 @@ services:
1937 - " 80:80"
2038 volumes :
2139 - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
40+
41+ wordpress5.4 :
42+ build :
43+ context : .
44+ dockerfile : ./docker/wp5.4/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
45+ links :
46+ - crowdsec
47+ - mysql
48+ - redis
49+ - memcached
50+ environment :
51+ - WORDPRESS_DB_PASSWORD=super_secret_password
52+ - WORDPRESS_DEBUG=1
53+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
54+ # more here https://hub.docker.com/_/wordpress
55+ ports :
56+ - " 80:80"
57+ volumes :
58+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
59+
60+ wordpress5.3 :
61+ build :
62+ context : .
63+ dockerfile : ./docker/wp5.3/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
64+ links :
65+ - crowdsec
66+ - mysql
67+ - redis
68+ - memcached
69+ environment :
70+ - WORDPRESS_DB_PASSWORD=super_secret_password
71+ - WORDPRESS_DEBUG=1
72+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
73+ # more here https://hub.docker.com/_/wordpress
74+ ports :
75+ - " 80:80"
76+ volumes :
77+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
78+
79+ wordpress5.2 :
80+ build :
81+ context : .
82+ dockerfile : ./docker/wp5.2/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
83+ links :
84+ - crowdsec
85+ - mysql
86+ - redis
87+ - memcached
88+ environment :
89+ - WORDPRESS_DB_PASSWORD=super_secret_password
90+ - WORDPRESS_DEBUG=1
91+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
92+ # more here https://hub.docker.com/_/wordpress
93+ ports :
94+ - " 80:80"
95+ volumes :
96+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
97+
98+ wordpress5.1 :
99+ build :
100+ context : .
101+ dockerfile : ./docker/wp5.1/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
102+ links :
103+ - crowdsec
104+ - mysql
105+ - redis
106+ - memcached
107+ environment :
108+ - WORDPRESS_DB_PASSWORD=super_secret_password
109+ - WORDPRESS_DEBUG=1
110+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
111+ # more here https://hub.docker.com/_/wordpress
112+ ports :
113+ - " 80:80"
114+ volumes :
115+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
116+
117+ wordpress5.0 :
118+ build :
119+ context : .
120+ dockerfile : ./docker/wp5.0/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
121+ links :
122+ - crowdsec
123+ - mysql
124+ - redis
125+ - memcached
126+ environment :
127+ - WORDPRESS_DB_PASSWORD=super_secret_password
128+ - WORDPRESS_DEBUG=1
129+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
130+ # more here https://hub.docker.com/_/wordpress
131+ ports :
132+ - " 80:80"
133+ volumes :
134+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
135+
136+ wordpress4.9 :
137+ build :
138+ context : .
139+ dockerfile : ./docker/wp4.9/php-${CS_WORDPRESS_BOUNCER_PHP_VERSION}.Dockerfile
140+ links :
141+ - crowdsec
142+ - mysql
143+ - redis
144+ - memcached
145+ environment :
146+ - WORDPRESS_DB_PASSWORD=super_secret_password
147+ - WORDPRESS_DEBUG=1
148+ # - WORDPRESS_CONFIG_EXTRA=define('DISABLE_WP_CRON', true);
149+ # more here https://hub.docker.com/_/wordpress
150+ ports :
151+ - " 80:80"
152+ volumes :
153+ - .:/var/www/html/wp-content/plugins/cs-wordpress-bouncer
154+
22155 crowdsec :
23156 image : crowdsecurity/crowdsec:latest
24157 environment :
0 commit comments