You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo docker run -e VIRTUAL_HOST=etopian.net,www.etopian.net -v /data/sites/etopian.net:/DATA etopian/alpine-php-wordpress
45
44
```
46
45
47
-
Populate /data/sites/etopian.com/htdocs and /data/sites/etopian.net/htdocs with your WP files. See http://www.dockerwordpress.com if you need help on how to configure your database.
46
+
Populate /data/sites/etopian.com/htdocs and /data/sites/etopian.net/htdocs with your WP files. See http://www.wordpressdocker.com if you need help on how to configure your database.
48
47
49
48
The following user and group id are used, the files should be set to this:
50
49
User ID:
@@ -73,10 +72,6 @@ cd /DATA/htdocs
73
72
wp-cli cli
74
73
```
75
74
76
-
### Fail2Ban
77
-
78
-
We are adding the ability to use Fail2Ban on here, however it does not yet work. Will update once it does.
79
-
80
75
### Multisite
81
76
82
77
For each multisite you need to give the domain as the -e VIRTUAL_HOST parameter. For instance VIRTUAL_HOST=site1.com,www.site1.com,site2.com,www.site2.com ... if you wish to add more sites you need to recreate the container.
@@ -94,184 +89,14 @@ To modify php.ini variable, simply edit php-fpm.ini and add php_flag[variable] =
94
89
php_flag[display_errors] = on
95
90
```
96
91
97
-
### PHP Modules
98
-
#### List of available modules in Alpine Linux, not all these are installed.
99
-
##### In order to install a php module do, (leave out the version number i.e. -5.6.11-r0
100
-
```
101
-
docker exec <image_id> apk add <pkg_name>
102
-
docker restart <image_name>
103
-
```
104
-
Example:
105
-
106
-
```
107
-
docker exec <image_id> apk add php-soap
108
-
docker restart <image_name>
109
-
```
110
-
111
-
112
-
php-soap-5.6.11-r0
113
-
114
-
php-openssl-5.6.11-r0
115
-
116
-
php-gmp-5.6.11-r0
117
-
118
-
php-phar-5.6.11-r0
119
-
120
-
php-embed-5.6.11-r0
121
-
122
-
php-pdo_odbc-5.6.11-r0
123
-
124
-
php-mysqli-5.6.11-r0
125
-
126
-
php-common-5.6.11-r0
127
-
128
-
php-ctype-5.6.11-r0
129
-
130
-
php-fpm-5.6.11-r0
131
-
132
-
php-shmop-5.6.11-r0
133
-
134
-
php-xsl-5.6.11-r0
135
-
136
-
php-curl-5.6.11-r0
137
-
138
-
php-pear-net_idna2-0.1.1-r0
139
-
140
-
php-json-5.6.11-r0
141
-
142
-
php-dom-5.6.11-r0
143
-
144
-
php-pspell-5.6.11-r0
145
-
146
-
php-sockets-5.6.11-r0
147
-
148
-
php-pear-mdb2-driver-pgsql-2.5.0b5-r0
149
-
150
-
php-pdo-5.6.11-r0
151
-
152
-
phpldapadmin-1.2.3-r3
153
-
154
-
php-pear-5.6.11-r0
155
-
156
-
php-phpmailer-5.2.0-r0
157
-
158
-
phpmyadmin-doc-4.4.10-r0
159
-
160
-
php-cli-5.6.11-r0
161
-
162
-
php-zip-5.6.11-r0
163
-
164
-
php-pgsql-5.6.11-r0
165
-
166
-
php-sysvshm-5.6.11-r0
167
-
168
-
php-imap-5.6.11-r0
169
-
170
-
php-intl-5.6.11-r0
171
-
172
-
php-embed-5.6.11-r0
173
-
174
-
php-zlib-5.6.11-r0
175
-
176
-
php-phpdbg-5.6.11-r0
177
-
178
-
php-sysvsem-5.6.11-r0
179
-
180
-
phpmyadmin-4.4.10-r0
181
-
182
-
php-mysql-5.6.11-r0
183
-
184
-
php-sqlite3-5.6.11-r0
185
-
186
-
php-cgi-5.6.11-r0
187
-
188
-
php-apcu-4.0.7-r1
189
-
190
-
php-snmp-5.6.11-r0
191
-
192
-
php-pdo_pgsql-5.6.11-r0
193
-
194
-
php-xml-5.6.11-r0
195
-
196
-
php-wddx-5.6.11-r0
197
-
198
-
php-sysvmsg-5.6.11-r0
199
-
200
-
php-enchant-5.6.11-r0
201
-
202
-
php-bcmath-5.6.11-r0
203
-
204
-
php-pear-mail_mime-1.8.9-r0
205
-
206
-
php-apache2-5.6.11-r0
207
-
208
-
php-gd-5.6.11-r0
209
-
210
-
php-pear-mdb2-driver-sqlite-2.5.0b5-r0
211
-
212
-
php-xcache-3.2.0-r1
213
-
214
-
php-odbc-5.6.11-r0
215
-
216
-
php-mailparse-2.1.6-r2
217
-
218
-
php-ftp-5.6.11-r0
219
-
220
-
perl-php-serialization-0.34-r1
221
-
222
-
php-exif-5.6.11-r0
223
-
224
-
php-pdo_mysql-5.6.11-r0
225
-
226
-
php-ldap-5.6.11-r0
227
-
228
-
php-pear-mdb2-2.5.0b5-r0
229
-
230
-
php-dbg-5.6.11-r0
231
-
232
-
php-pear-net_smtp-1.6.2-r0
233
-
234
-
php-opcache-5.6.11-r0
235
-
236
-
php-pdo_sqlite-5.6.11-r0
237
-
238
-
php-posix-5.6.11-r0
239
-
240
-
php-dba-5.6.11-r0
241
-
242
-
php-iconv-5.6.11-r0
243
-
244
-
php-gettext-5.6.11-r0
245
-
246
-
php-xmlreader-5.6.11-r0
247
-
248
-
php-5.6.11-r0
249
-
250
-
php-xmlrpc-5.6.11-r0
251
-
252
-
php-bz2-5.6.11-r0
253
-
254
-
perl-php-serialization-doc-0.34-r1
255
-
256
-
php-mcrypt-5.6.11-r0
257
-
258
-
php-memcache-3.0.8-r3
259
-
260
-
xapian-bindings-php-1.2.21-r1
261
-
262
-
php-pdo_dblib-5.6.11-r0
263
-
264
-
php-phalcon-2.0.3-r0
265
-
266
-
php-dev-5.6.11-r0
92
+
Additional documentation on http://www.wordpressdocker.com
267
93
268
-
php-doc-5.6.11-r0
94
+
## Questions or Support
269
95
270
-
php-mssql-5.6.11-r0
96
+
https://gitter.im/etopian/devoply
271
97
272
-
php-calendar-5.6.11-r0
98
+
## Docker WordPress Control Panel
273
99
274
-
php-pear-mdb2-driver-mysqli-2.5.0b5-r0
100
+
DEVOPly is a free hosting control panel which does everything taught in this tutorial automatically and much more, backups, staging/dev/prod, code editor, Github/Bitbucket deployments, DNS, WordPress Management. https://www.devoply.com
0 commit comments