Start building your digital presence with a flexible, open-source publishing platform designed for creators, small businesses, and enterprises alike. Whether you are launching a simple blog or a complex e-commerce store, you have complete control over your site's design and functionality without needing to write a single line of code. The intuitive real-time editing experience allows you to see exactly how your site will look as you add, edit, and rearrange content.
Key Benefits:
services:
mariadb:
image: docker.io/bitnami/mariadb:11.4
container_name: mariadb
environment:
- ALLOW_EMPTY_PASSWORD=yes
- MARIADB_USER=bn_wordpress
- MARIADB_DATABASE=bitnami_wordpress
- MARIADB_PASSWORD=${DATABASE_PASSWORD}
volumes:
- ./mariadb_data:/bitnami/mariadb
wordpress:
image: docker.io/bitnami/wordpress:6
container_name: wordpress
ports:
- '8080:8080'
- '8443:8443'
environment:
- WORDPRESS_DATABASE_HOST=mariadb
- WORDPRESS_DATABASE_PORT_NUMBER=3306
- WORDPRESS_DATABASE_USER=bn_wordpress
- WORDPRESS_DATABASE_NAME=bitnami_wordpress
- WORDPRESS_DATABASE_PASSWORD=${DATABASE_PASSWORD}
- WORDPRESS_USERNAME=user
- WORDPRESS_PASSWORD=${WORDPRESS_ADMIN_PASSWORD}
volumes:
- ./wordpress_data:/bitnami/wordpress
depends_on:
- mariadbDATABASE_PASSWORD=bitnami_secure_password
WORDPRESS_ADMIN_PASSWORD=bitnami_admin_passwordAuto-fetched about 19 hours ago