This page describes the installation of Wordpress under Debian 7 (Wheezy), in an lxc container.

 

aptitude install wordpress nginx mysql-server php5-fpm
cat ~/wp.sql 
CREATE DATABASE jll;
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER
ON jll.*
TO jll@localhost
IDENTIFIED BY 'secret';
FLUSH PRIVILEGES;