16 lines
589 B
YAML
16 lines
589 B
YAML
# documentation: https://wordpress.org/documentation/
|
|
# slogan: WordPress with external database. Wordpress is open source software you can use to create a beautiful website, blog, or app.
|
|
# tags: cms, blog, content, management
|
|
|
|
services:
|
|
wordpress:
|
|
image: wordpress:latest
|
|
volumes:
|
|
- wordpress-files:/var/www/html
|
|
environment:
|
|
SERVICE_FQDN:
|
|
WORDPRESS_DB_HOST: $SERVICE_DB_HOST_WORDPRESS
|
|
WORDPRESS_DB_USER: $SERVICE_USER_WORDPRESS
|
|
WORDPRESS_DB_PASSWORD: $SERVICE_PASSWORD_WORDPRESS
|
|
WORDPRESS_DB_NAME: $SERVICE_DB_NAME_WORDPRESS
|