├── .gitignore ├── 1-phinx.xml ├── Dockerfile ├── Makefile ├── README.md ├── config.xml ├── credentials.xml ├── plugins.txt ├── ssh-config └── ssh_keys └── .empty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /1-phinx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/1-phinx.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/README.md -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/config.xml -------------------------------------------------------------------------------- /credentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/credentials.xml -------------------------------------------------------------------------------- /plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/plugins.txt -------------------------------------------------------------------------------- /ssh-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmorgan/jenkins2-docker/HEAD/ssh-config -------------------------------------------------------------------------------- /ssh_keys/.empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------