├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── README.md ├── ansible ├── Dockerfile └── README.md ├── fluentd ├── Dockerfile ├── README.md ├── fluent.conf └── plugins │ └── .gitignore ├── fpm ├── Dockerfile └── README.md ├── gcloud ├── README.md ├── docker │ ├── Dockerfile │ └── README.md ├── kubectl-make │ ├── Dockerfile │ └── README.md └── terraform │ ├── Dockerfile │ └── README.md ├── golang ├── Dockerfile ├── README.md └── unit_tests.sh ├── gotpl ├── Dockerfile └── README.md ├── linters ├── flake8 │ ├── .flake8 │ ├── Dockerfile │ └── README.md ├── mdl │ ├── .mdlrc │ ├── Dockerfile │ ├── README.md │ └── markdown │ │ └── wpe_markdown.rb ├── phpcs │ ├── Dockerfile │ ├── README.md │ └── composer.json ├── pylint │ ├── .pylintrc │ ├── Dockerfile │ ├── README.md │ └── bin │ │ └── run_pylint.sh ├── shellcheck │ ├── Dockerfile │ └── README.md └── yamllint │ ├── .yamllintrc │ ├── Dockerfile │ └── README.md ├── local-dev ├── 5.6 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── xdebug-listen-off.sh │ ├── xdebug-listen-on.sh │ ├── xdebug-off.sh │ ├── xdebug-on.sh │ └── xdebug.ini ├── 7.0 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── xdebug-listen-off.sh │ ├── xdebug-listen-on.sh │ ├── xdebug-off.sh │ ├── xdebug-on.sh │ └── xdebug.ini ├── 7.1 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── xdebug-listen-off.sh │ ├── xdebug-listen-on.sh │ ├── xdebug-off.sh │ ├── xdebug-on.sh │ └── xdebug.ini ├── 7.2 │ ├── Dockerfile │ ├── entrypoint.sh │ ├── xdebug-listen-off.sh │ ├── xdebug-listen-on.sh │ ├── xdebug-off.sh │ ├── xdebug-on.sh │ └── xdebug.ini └── README.md ├── packer ├── Dockerfile └── README.md ├── pubsub-emulator ├── Dockerfile ├── README.md └── start_pubsub.sh ├── python ├── Dockerfile └── README.md ├── socat ├── Dockerfile └── README.md ├── squid ├── Dockerfile ├── README.md ├── entrypoint.sh └── squid.conf ├── ubuntu ├── README.md └── docker │ ├── Dockerfile │ ├── README.md │ └── google-cloud-sdk.list └── wp-cli ├── Dockerfile ├── README.md └── composer.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # JetBrains IDE Files 2 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/README.md -------------------------------------------------------------------------------- /ansible/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ansible/Dockerfile -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ansible/README.md -------------------------------------------------------------------------------- /fluentd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/fluentd/Dockerfile -------------------------------------------------------------------------------- /fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/fluentd/README.md -------------------------------------------------------------------------------- /fluentd/fluent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/fluentd/fluent.conf -------------------------------------------------------------------------------- /fluentd/plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/fluentd/plugins/.gitignore -------------------------------------------------------------------------------- /fpm/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ruby:2 2 | RUN gem install fpm -v 1.11.0 3 | WORKDIR /workspace 4 | ENTRYPOINT ["fpm"] 5 | -------------------------------------------------------------------------------- /fpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/fpm/README.md -------------------------------------------------------------------------------- /gcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/README.md -------------------------------------------------------------------------------- /gcloud/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/docker/Dockerfile -------------------------------------------------------------------------------- /gcloud/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/docker/README.md -------------------------------------------------------------------------------- /gcloud/kubectl-make/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/kubectl-make/Dockerfile -------------------------------------------------------------------------------- /gcloud/kubectl-make/README.md: -------------------------------------------------------------------------------- 1 | # kubectl-make 2 | 3 | Docker image with gcloud, make, and jinja2 installed. 4 | -------------------------------------------------------------------------------- /gcloud/terraform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/terraform/Dockerfile -------------------------------------------------------------------------------- /gcloud/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gcloud/terraform/README.md -------------------------------------------------------------------------------- /golang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/golang/Dockerfile -------------------------------------------------------------------------------- /golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/golang/README.md -------------------------------------------------------------------------------- /golang/unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/golang/unit_tests.sh -------------------------------------------------------------------------------- /gotpl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gotpl/Dockerfile -------------------------------------------------------------------------------- /gotpl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/gotpl/README.md -------------------------------------------------------------------------------- /linters/flake8/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/flake8/.flake8 -------------------------------------------------------------------------------- /linters/flake8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/flake8/Dockerfile -------------------------------------------------------------------------------- /linters/flake8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/flake8/README.md -------------------------------------------------------------------------------- /linters/mdl/.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/mdl/.mdlrc -------------------------------------------------------------------------------- /linters/mdl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/mdl/Dockerfile -------------------------------------------------------------------------------- /linters/mdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/mdl/README.md -------------------------------------------------------------------------------- /linters/mdl/markdown/wpe_markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/mdl/markdown/wpe_markdown.rb -------------------------------------------------------------------------------- /linters/phpcs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/phpcs/Dockerfile -------------------------------------------------------------------------------- /linters/phpcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/phpcs/README.md -------------------------------------------------------------------------------- /linters/phpcs/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/phpcs/composer.json -------------------------------------------------------------------------------- /linters/pylint/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/pylint/.pylintrc -------------------------------------------------------------------------------- /linters/pylint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/pylint/Dockerfile -------------------------------------------------------------------------------- /linters/pylint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/pylint/README.md -------------------------------------------------------------------------------- /linters/pylint/bin/run_pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/pylint/bin/run_pylint.sh -------------------------------------------------------------------------------- /linters/shellcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/shellcheck/Dockerfile -------------------------------------------------------------------------------- /linters/shellcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/shellcheck/README.md -------------------------------------------------------------------------------- /linters/yamllint/.yamllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/yamllint/.yamllintrc -------------------------------------------------------------------------------- /linters/yamllint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/yamllint/Dockerfile -------------------------------------------------------------------------------- /linters/yamllint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/linters/yamllint/README.md -------------------------------------------------------------------------------- /local-dev/5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/Dockerfile -------------------------------------------------------------------------------- /local-dev/5.6/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/entrypoint.sh -------------------------------------------------------------------------------- /local-dev/5.6/xdebug-listen-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/xdebug-listen-off.sh -------------------------------------------------------------------------------- /local-dev/5.6/xdebug-listen-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/xdebug-listen-on.sh -------------------------------------------------------------------------------- /local-dev/5.6/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/xdebug-off.sh -------------------------------------------------------------------------------- /local-dev/5.6/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/xdebug-on.sh -------------------------------------------------------------------------------- /local-dev/5.6/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/5.6/xdebug.ini -------------------------------------------------------------------------------- /local-dev/7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/Dockerfile -------------------------------------------------------------------------------- /local-dev/7.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/entrypoint.sh -------------------------------------------------------------------------------- /local-dev/7.0/xdebug-listen-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/xdebug-listen-off.sh -------------------------------------------------------------------------------- /local-dev/7.0/xdebug-listen-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/xdebug-listen-on.sh -------------------------------------------------------------------------------- /local-dev/7.0/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/xdebug-off.sh -------------------------------------------------------------------------------- /local-dev/7.0/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/xdebug-on.sh -------------------------------------------------------------------------------- /local-dev/7.0/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.0/xdebug.ini -------------------------------------------------------------------------------- /local-dev/7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/Dockerfile -------------------------------------------------------------------------------- /local-dev/7.1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/entrypoint.sh -------------------------------------------------------------------------------- /local-dev/7.1/xdebug-listen-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/xdebug-listen-off.sh -------------------------------------------------------------------------------- /local-dev/7.1/xdebug-listen-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/xdebug-listen-on.sh -------------------------------------------------------------------------------- /local-dev/7.1/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/xdebug-off.sh -------------------------------------------------------------------------------- /local-dev/7.1/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/xdebug-on.sh -------------------------------------------------------------------------------- /local-dev/7.1/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.1/xdebug.ini -------------------------------------------------------------------------------- /local-dev/7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/Dockerfile -------------------------------------------------------------------------------- /local-dev/7.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/entrypoint.sh -------------------------------------------------------------------------------- /local-dev/7.2/xdebug-listen-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/xdebug-listen-off.sh -------------------------------------------------------------------------------- /local-dev/7.2/xdebug-listen-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/xdebug-listen-on.sh -------------------------------------------------------------------------------- /local-dev/7.2/xdebug-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/xdebug-off.sh -------------------------------------------------------------------------------- /local-dev/7.2/xdebug-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/xdebug-on.sh -------------------------------------------------------------------------------- /local-dev/7.2/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/7.2/xdebug.ini -------------------------------------------------------------------------------- /local-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/local-dev/README.md -------------------------------------------------------------------------------- /packer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/packer/Dockerfile -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/packer/README.md -------------------------------------------------------------------------------- /pubsub-emulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/pubsub-emulator/Dockerfile -------------------------------------------------------------------------------- /pubsub-emulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/pubsub-emulator/README.md -------------------------------------------------------------------------------- /pubsub-emulator/start_pubsub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/pubsub-emulator/start_pubsub.sh -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/python/README.md -------------------------------------------------------------------------------- /socat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/socat/Dockerfile -------------------------------------------------------------------------------- /socat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/socat/README.md -------------------------------------------------------------------------------- /squid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/squid/Dockerfile -------------------------------------------------------------------------------- /squid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/squid/README.md -------------------------------------------------------------------------------- /squid/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/squid/entrypoint.sh -------------------------------------------------------------------------------- /squid/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/squid/squid.conf -------------------------------------------------------------------------------- /ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ubuntu/README.md -------------------------------------------------------------------------------- /ubuntu/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ubuntu/docker/Dockerfile -------------------------------------------------------------------------------- /ubuntu/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ubuntu/docker/README.md -------------------------------------------------------------------------------- /ubuntu/docker/google-cloud-sdk.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/ubuntu/docker/google-cloud-sdk.list -------------------------------------------------------------------------------- /wp-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/wp-cli/Dockerfile -------------------------------------------------------------------------------- /wp-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/wp-cli/README.md -------------------------------------------------------------------------------- /wp-cli/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpengine/base-images-public/HEAD/wp-cli/composer.sh --------------------------------------------------------------------------------