mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-13 10:53:38 +00:00
wordpress
This commit is contained in:
parent
b8ac9600ec
commit
48b60f91bd
@ -53,8 +53,9 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
|
|
||||||
# Blogging & CMS
|
# Blogging & CMS
|
||||||
- [Ghost](apps/cms/ghost.md)
|
- [Ghost](apps/cms/ghost.md)
|
||||||
|
- [Wordpress](apps/cms/wordpress.md)
|
||||||
|
|
||||||
|
### Other (not tested)
|
||||||
- [AnchorCMS](https://github.com/anchorcms/anchor-cms#installation) 🔗
|
- [AnchorCMS](https://github.com/anchorcms/anchor-cms#installation) 🔗
|
||||||
- [Bludit](https://www.bludit.com) 🔗 - Simple, Fast, Secure, Flat-File CMS.
|
- [Bludit](https://www.bludit.com) 🔗 - Simple, Fast, Secure, Flat-File CMS.
|
||||||
- [Grav](https://getgrav.org) 🔗 - modern open source 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) 🔗
|
- [WriteFreely](https://github.com/writeas/writefreely) 🔗
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Bookmarks & Read Later
|
# Bookmarks & Read Later
|
||||||
- [LinkAce](apps/bookmarks/linkace.md)
|
- [LinkAce](apps/bookmarks/linkace.md)
|
||||||
- [Linkding](apps/bookmarks/linkding.md)
|
- [Linkding](apps/bookmarks/linkding.md)
|
||||||
|
42
apps/cms/wordpress.md
Normal file
42
apps/cms/wordpress.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user