├── .dockerignore ├── .gitignore ├── .ssh-default-pass ├── Dockerfile ├── README.md ├── distelli-manifest.yml ├── nginx-site.conf ├── start.sh └── supervisord.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.ssh-default-pass: -------------------------------------------------------------------------------- 1 | wordpress 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/README.md -------------------------------------------------------------------------------- /distelli-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/distelli-manifest.yml -------------------------------------------------------------------------------- /nginx-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/nginx-site.conf -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/start.sh -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlongren/docker-wordpress-nginx-ssh/HEAD/supervisord.conf --------------------------------------------------------------------------------