Build your digital presence with a highly flexible, open-source publishing platform trusted by millions. Whether you are launching a personal blog, a small business website, or a complex enterprise application, this platform provides the foundation you need to succeed. You can start with a blank canvas or choose from thousands of themes, customizing every detail without writing a single line of code. The intuitive real-time editor allows you to see exactly how your site will look as you add and rearrange content.\n\nEnjoy complete control over your website with these core benefits:\n* Flexible Design: Customize layouts and colors visually with an intuitive drag-and-drop interface.\n* Limitless Functionality: Add stores, analytics, and social media integrations using an extensive library of plugins.\n* Collaborative Editing: Leave notes on blocks and work together seamlessly to create content faster.\n* Global Community: Access a massive library of resources and support from a worldwide network.
services:
db:
image: mysql:8.0
command: '--default-authentication-plugin=mysql_native_password'
restart: always
environment:
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
volumes:
- ./db_data:/var/lib/mysql
wordpress:
image: wordpress:latest
restart: always
ports:
- 8080:80
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: ${MYSQL_PASSWORD}
WORDPRESS_DB_NAME: wordpress
volumes:
- ./wp_data:/var/www/htmlMYSQL_ROOT_PASSWORD=somestrongrootpassword
MYSQL_PASSWORD=wordpressAuto-fetched about 22 hours ago