mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-10 05:11:07 +01:00
19 lines
336 B
Markdown
19 lines
336 B
Markdown
# container image of WordPress
|
|
|
|
```
|
|
$ mkdir uploads db
|
|
$ cp env.sample .env
|
|
$ vim .env
|
|
```
|
|
|
|
Customize parameters
|
|
|
|
## Custom themes or pluggins
|
|
|
|
To include custom themes or pluggins mount them directly into /app/wp-content/:
|
|
```
|
|
volumes:
|
|
- ./uploads:/app/wp-content/uploads
|
|
- ./mytheme:/app/wp-content/themes/mytheme
|
|
```
|