├── .circleci └── config.yml ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── common.sh ├── docker-entrypoint.sh ├── launch.sh ├── purgeplugins.sh └── response.varfile ├── dc-pwd.yml ├── docker-compose.yml ├── examples ├── debug │ ├── docker-compose.yml │ └── start-jira.sh ├── mysql │ └── docker-compose.yml └── postgresql │ └── docker-compose.yml └── scripts ├── container.cfg ├── rm.sh └── rmi.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/README.md -------------------------------------------------------------------------------- /bin/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/bin/common.sh -------------------------------------------------------------------------------- /bin/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/bin/docker-entrypoint.sh -------------------------------------------------------------------------------- /bin/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/bin/launch.sh -------------------------------------------------------------------------------- /bin/purgeplugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/bin/purgeplugins.sh -------------------------------------------------------------------------------- /bin/response.varfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/bin/response.varfile -------------------------------------------------------------------------------- /dc-pwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/dc-pwd.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/debug/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/examples/debug/docker-compose.yml -------------------------------------------------------------------------------- /examples/debug/start-jira.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/examples/debug/start-jira.sh -------------------------------------------------------------------------------- /examples/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/examples/mysql/docker-compose.yml -------------------------------------------------------------------------------- /examples/postgresql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/examples/postgresql/docker-compose.yml -------------------------------------------------------------------------------- /scripts/container.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/scripts/container.cfg -------------------------------------------------------------------------------- /scripts/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/scripts/rm.sh -------------------------------------------------------------------------------- /scripts/rmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamatldocker/jira/HEAD/scripts/rmi.sh --------------------------------------------------------------------------------