-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: "3.7" | ||
services: | ||
app: | ||
image: wordpress:6.7.1@sha256:2f3572d5cd722489fe47d59ed45d947dc9507f5a019eb0567ddf24aedf9257ed | ||
user: "1000:1000" | ||
environment: | ||
- WORDPRESS_DB_HOST=wordpress_db_1 | ||
- WORDPRESS_DB_NAME=wordpress | ||
- WORDPRESS_DB_USER=umbrel | ||
- WORDPRESS_DB_PASSWORD=umbrelwordpress | ||
volumes: | ||
- ${APP_DATA_DIR}/data/wordpress:/var/www/html | ||
ports: | ||
Check notice on line 13 in wordpress/docker-compose.yml GitHub Actions / Lint appsExternal port mapping "8567:80"
|
||
- "8567:80" | ||
restart: on-failure | ||
depends_on: | ||
- db | ||
|
||
db: | ||
image: mariadb:11.5.2@sha256:2d50fe0f77dac919396091e527e5e148a9de690e58f32875f113bef6506a17f5 | ||
user: "1000:1000" | ||
environment: | ||
- MYSQL_ROOT_PASSWORD=umbrelwordpressroot | ||
- MYSQL_DATABASE=wordpress | ||
- MYSQL_USER=umbrel | ||
- MYSQL_PASSWORD=umbrelwordpress | ||
volumes: | ||
- ${APP_DATA_DIR}/data/db:/var/lib/mysql | ||
restart: on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
manifestVersion: 1 | ||
id: wordpress | ||
name: WordPress | ||
tagline: The open source publishing platform of choice for millions of websites worldwide | ||
category: social | ||
version: "6.7.1" | ||
port: 8567 | ||
description: >- | ||
📚 **Empower Your Digital Voice** – The open-source publishing platform trusted by millions. From personal blogs to enterprise portals, WordPress gives everyone the tools to share their stories. | ||
✨ **Unleash Your Creativity** – Choose from thousands of themes and plugins, craft your unique design, and make your site truly your own. | ||
🤝 **Join a Global Community** – Connect with creators, developers, and enthusiasts worldwide. Together, shape the future of the open web. | ||
⚙️ **Customize & Extend** – Seamless integrations, custom code, and unlimited flexibility—unlock endless possibilities for growth and innovation. | ||
**Note:** WordPress can be used locally within your network. However, if you want others outside your local network to access your instance, you'll need to make it accessible on the public internet. | ||
If you have a domain name, you can set this up using the Cloudflare Tunnel or Nginx Proxy Manager apps in the Umbrel App Store. | ||
For it to work you need to set the **WordPress Address (URL)** and **Site Address (URL)** to your domain name in the WordPress settings. | ||
Also make sure to set the **correct headers** in the Nginx Proxy Manager or Cloudflare Tunnel app. More information can be found here: https://developer.wordpress.org/advanced-administration/security/https/#using-a-reverse-proxy | ||
developer: WordPress | ||
website: https://wordpress.org/ | ||
submitter: al-lac | ||
submission: https://github.com/getumbrel/umbrel-apps/pull/1947 | ||
repo: https://github.com/WordPress/WordPress | ||
support: https://wordpress.org/support/forums/ | ||
gallery: [] | ||
defaultUsername: "" | ||
defaultPassword: "" | ||
dependencies: [] | ||
releaseNotes: "" | ||
path: "" |