├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── nginx-site.conf ├── start.sh └── supervisord.conf /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/README.md -------------------------------------------------------------------------------- /nginx-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/nginx-site.conf -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/start.sh -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeneware/docker-wordpress-nginx/HEAD/supervisord.conf --------------------------------------------------------------------------------