Files
containers/bitnami/wordpress/docker-compose.yml
Bitnami Bot 9986021139 4.7.2-r2 release
* This release includes new features:
  * WordPress expects an existing database to be configured with.
  * The following plugins have been added:
    - akismet
    - all-in-one-wp-migration
    - all-in-one-seo-pack
    - google-analytics-for-wordpress
    - jetpack
    - simple-tags
    - wordpress-mu-domain-mapping
2017-03-06 10:50:32 +00:00

37 lines
847 B
YAML

version: '2'
services:
mariadb:
image: 'bitnami/mariadb:latest'
volumes:
- 'mariadb_data:/bitnami/mariadb'
environment:
- MARIADB_USER=bn_wordpress
- MARIADB_DATABASE=bitnami_wordpress
- ALLOW_EMPTY_PASSWORD=yes
wordpress:
image: 'bitnami/wordpress:latest'
ports:
- '80:80'
- '443:443'
volumes:
- 'wordpress_data:/bitnami/wordpress'
- 'apache_data:/bitnami/apache'
- 'php_data:/bitnami/php'
depends_on:
- mariadb
environment:
- MARIADB_HOST=mariadb
- MARIADB_PORT=3306
- WORDPRESS_DATABASE_USER=bn_wordpress
- WORDPRESS_DATABASE_NAME=bitnami_wordpress
- ALLOW_EMPTY_PASSWORD=yes
volumes:
mariadb_data:
driver: local
wordpress_data:
driver: local
apache_data:
driver: local
php_data:
driver: local