diff --git a/README.md b/README.md index 2a1c478..335a2c9 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/apps/cms/wordpress.md b/apps/cms/wordpress.md new file mode 100644 index 0000000..1280bf3 --- /dev/null +++ b/apps/cms/wordpress.md @@ -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 + +
+ +- [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 +```