wordpress

This commit is contained in:
Tomasz Borychowski 2022-05-23 22:29:40 +01:00
parent b8ac9600ec
commit 48b60f91bd
2 changed files with 44 additions and 2 deletions

View File

@ -53,8 +53,9 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Blogging & CMS
- [Ghost](apps/cms/ghost.md)
- [Wordpress](apps/cms/wordpress.md)
### Other (not tested)
- [AnchorCMS](https://github.com/anchorcms/anchor-cms#installation) 🔗
- [Bludit](https://www.bludit.com) 🔗 - Simple, Fast, Secure, Flat-File CMS.
- [Grav](https://getgrav.org) 🔗 - modern open source flat-file CMS.
@ -68,7 +69,6 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [WriteFreely](https://github.com/writeas/writefreely) 🔗
# Bookmarks & Read Later
- [LinkAce](apps/bookmarks/linkace.md)
- [Linkding](apps/bookmarks/linkding.md)

42
apps/cms/wordpress.md Normal file
View File

@ -0,0 +1,42 @@
# Wordpress
The ultimate CMS/blogging platform.
- hellishly slow! (loading from a server in LAN takes ~3-7 seconds)
- extremely complex
- tons of plugins & themes & configurability
<br>
- [Homepage](https://wordpress.org/)
- [Docker Hub](https://hub.docker.com/_/wordpress)
- [Github repo](https://github.com/WordPress/WordPress)
## docker-compose.yml
```yml
---
version: '3.1'
services:
wordpress:
image: wordpress
restart: unless-stopped
ports:
- 3123:80
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: exampleuser
WORDPRESS_DB_PASSWORD: examplepass
WORDPRESS_DB_NAME: blog
volumes:
- ./data:/var/www/html
db:
image: mysql:5.7
restart: unless-stopped
environment:
MYSQL_DATABASE: blog
MYSQL_USER: exampleuser
MYSQL_PASSWORD: examplepass
MYSQL_RANDOM_ROOT_PASSWORD: '1'
volumes:
- ./db:/var/lib/mysql
```