├── .gitignore ├── README.md ├── doc └── infrastracture │ └── code_quality │ └── sonarqube │ ├── organization_of_work_with_sonarqube.md │ └── organization_of_work_with_sonarqube │ ├── BuildArg.png │ ├── BuildInit.png │ ├── BuildInit2.png │ ├── BuildInit3.png │ ├── ComposeInit2.png │ ├── ComposeInit3.png │ ├── ComposeInit4.png │ ├── CreateProjectToken.png │ ├── GitLabAccessTokens.png │ ├── GitLabApplication.png │ ├── GitLabApplications.png │ ├── GitLabNewAccessToken.png │ ├── GitlabProjectEnableRunner.png │ ├── GitlabRunnerRegister.png │ ├── GitlabRunners.png │ ├── GitlabSettingCICD.png │ ├── ProxmoxLXCBackup.png │ ├── SonarqubeALMSetting.png │ ├── SonarqubeAuth.png │ ├── SonarqubeGitlabAuth.png │ ├── SonarqubeImport.png │ ├── SonarqubeIntALM.png │ ├── SonarqubeMethodALM.png │ ├── SonarqubeServerBaseURL.png │ ├── SonarqubeSettings.png │ ├── SonarqubeToken.png │ ├── samurai.webp │ └── samurai2.webp └── docker ├── .gitignore ├── 1c-ans ├── build │ ├── .arg.tmpl │ ├── docker-build.sh │ ├── dockerfile │ └── entrypoint.sh └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ └── docker-compose.yml ├── 1c-element-script └── build │ ├── .arg.tmpl │ ├── context │ ├── post_install │ └── pre_install │ ├── docker-build.sh │ └── dockerfile ├── 1c-esb ├── build │ ├── .arg.tmpl │ ├── context │ │ └── pre_install │ ├── docker-build.sh │ ├── dockerfile │ └── entrypoint.sh └── compose │ ├── esb-ide │ ├── .env.tmpl │ ├── esb-ide-common-compose.yml │ └── esb-ide-docker-compose.yml │ └── esb │ ├── .env.tmpl │ ├── esb-common-compose.yml │ └── esb-docker-compose.yml ├── 1c ├── build │ ├── .arg.tmpl │ ├── context │ │ ├── post_install │ │ ├── pre_install │ │ └── pre_install_mode │ ├── docker-build.sh │ ├── dockerfile │ └── entrypoint.sh └── compose │ ├── crs │ ├── .env.tmpl │ ├── common-compose.yml │ └── docker-compose.yml │ ├── ibsrv │ ├── .env.tmpl │ ├── common-compose.yml │ └── docker-compose.yml │ └── server │ ├── .env.tmpl │ ├── common-compose.yml │ └── docker-compose.yml ├── common_context ├── .arg.tmpl ├── .env.tmpl └── build │ ├── aptly_repo │ ├── certs │ ├── gosu │ └── install ├── diagrams ├── README.md ├── draw-io │ └── compose │ │ ├── .env.tmpl │ │ ├── common-compose.yml │ │ ├── docker-compose.yml │ │ └── docker-stack.yml └── plantuml │ └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-compose.yml │ └── docker-stack.yml ├── docker-registry ├── README.md └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-compose.yml │ ├── docker-stack.yml │ ├── docker_registry_conf.tmpl │ └── docker_registry_htpasswd.tmpl ├── fluent-bit └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-compose.yml │ └── oc-tech-journal │ ├── .env.tmpl │ ├── oc-techlog-compose.yml │ ├── oc_techlog.conf │ ├── oc_techlog_filter.lua │ └── oc_techlog_parsers.conf ├── gitlab-ce ├── README.md ├── build │ └── gitlab-auto-mr │ │ ├── .arg.tmpl │ │ ├── context │ │ └── pre_install │ │ ├── docker-build.sh │ │ ├── dockerfile │ │ └── entrypoint.sh ├── compose │ ├── gitlab-runner │ │ ├── .env.tmpl │ │ ├── gitlab-runner-common-compose.yml │ │ └── gitlab-runner-docker-compose.yml │ └── gitlab │ │ ├── .env.tmpl │ │ ├── gitlab-common-compose.yml │ │ ├── gitlab-docker-compose.yml │ │ ├── gitlab-docker-stack.yml │ │ ├── gitlab_conf.tmpl │ │ └── update-config.sh └── gitlab-ci │ ├── .gitlab-ci.yml │ └── config.toml ├── hasp ├── build │ ├── .arg.tmpl │ ├── context │ │ └── pre_install │ ├── docker-build.sh │ ├── dockerfile │ └── entrypoint.sh └── compose │ ├── .env.tmpl │ └── docker-compose.yml ├── imagick ├── README.md └── build │ ├── .arg.tmpl │ ├── .gitignore │ ├── context │ ├── compile │ ├── post_install │ └── pre_install │ ├── docker-build.sh │ └── dockerfile ├── init.sh ├── jdk └── build │ ├── .arg.tmpl │ ├── context │ └── pre_install │ ├── docker-build.sh │ └── dockerfile ├── mssql └── build │ ├── .arg.tmpl │ ├── context │ └── install.ps1 │ ├── docker-build.ps1 │ ├── docker-init.ps1 │ ├── dockerfile │ └── entrypoint.ps1 ├── nginx ├── build │ ├── .arg.tmpl │ ├── context │ │ └── post_install │ ├── docker-build.sh │ ├── dockerfile │ └── stream.conf └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-stack.yml │ ├── nginx_conf.tmpl │ ├── stream_conf.tmpl │ └── update-config.sh ├── opensearch ├── README.md └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ └── docker-compose.yml ├── os ├── linux_deb │ └── build │ │ ├── .arg.tmpl │ │ ├── context │ │ └── pre_install │ │ ├── docker-build.sh │ │ └── dockerfile └── windows │ └── build │ ├── .arg.tmpl │ ├── LogMonitorConfig.json │ ├── context │ └── pre_install.ps1 │ ├── docker-build.ps1 │ └── dockerfile ├── portainer ├── README.md └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-compose.yml │ └── docker-stack.yml ├── postgres ├── build │ ├── .arg.tmpl │ ├── context │ │ ├── install │ │ ├── post_install │ │ └── pre_install │ ├── docker-build.sh │ ├── docker-ensure-initdb.sh │ ├── docker-entrypoint.sh │ └── dockerfile └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── docker-compose.yml │ └── docker-stack.yml ├── slc ├── build │ ├── .arg.tmpl │ ├── context │ │ └── pre_install │ ├── docker-build.sh │ ├── dockerfile │ └── entrypoint.sh └── compose │ ├── .env.tmpl │ └── docker-compose.yml ├── sonarqube ├── README.md ├── build │ ├── .arg.tmpl │ ├── context │ │ └── post_install │ ├── docker-build.sh │ └── dockerfile └── compose │ ├── .env.tmpl │ ├── common-compose.yml │ ├── depends_on_postgres │ └── depends_on_postgres-compose.yml │ ├── docker-compose.yml │ └── docker-stack.yml ├── step-ca-cli ├── build │ ├── .arg.tmpl │ ├── context │ │ └── install │ ├── docker-build.sh │ ├── dockerfile │ ├── entrypoint.sh │ └── send_sighup.sh ├── build_nginx │ ├── dockerfile │ ├── step-ca-acme │ ├── step-ca-acme-init.sh │ ├── step-ca-acme-start.sh │ └── webroot.conf └── compose │ ├── common-compose.yml │ ├── docker-compose.yml │ ├── docker-stack.yml │ └── env.tmpl └── vault ├── .env.tmpl ├── build ├── .arg.tmpl ├── dockerfile ├── vault-config-tsl.json └── vault-config.json └── compose └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .arg 2 | .env 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/README.md -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube.md -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildArg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildArg.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit2.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/BuildInit3.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit2.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit3.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ComposeInit4.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/CreateProjectToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/CreateProjectToken.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabAccessTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabAccessTokens.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabApplication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabApplication.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabApplications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabApplications.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabNewAccessToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitLabNewAccessToken.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabProjectEnableRunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabProjectEnableRunner.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabRunnerRegister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabRunnerRegister.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabRunners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabRunners.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabSettingCICD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/GitlabSettingCICD.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ProxmoxLXCBackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/ProxmoxLXCBackup.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeALMSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeALMSetting.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeAuth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeAuth.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeGitlabAuth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeGitlabAuth.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeImport.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeIntALM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeIntALM.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeMethodALM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeMethodALM.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeServerBaseURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeServerBaseURL.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeSettings.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/SonarqubeToken.png -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/samurai.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/samurai.webp -------------------------------------------------------------------------------- /doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/samurai2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/doc/infrastracture/code_quality/sonarqube/organization_of_work_with_sonarqube/samurai2.webp -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | users/* 2 | -------------------------------------------------------------------------------- /docker/1c-ans/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/1c-ans/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/build/docker-build.sh -------------------------------------------------------------------------------- /docker/1c-ans/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/build/dockerfile -------------------------------------------------------------------------------- /docker/1c-ans/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/1c-ans/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/1c-ans/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/1c-ans/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-ans/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/1c-element-script/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-element-script/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/1c-element-script/build/context/post_install: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | install_check() { 4 | 5 | executor -v 6 | 7 | } -------------------------------------------------------------------------------- /docker/1c-element-script/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-element-script/build/context/pre_install -------------------------------------------------------------------------------- /docker/1c-element-script/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-element-script/build/docker-build.sh -------------------------------------------------------------------------------- /docker/1c-element-script/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-element-script/build/dockerfile -------------------------------------------------------------------------------- /docker/1c-esb/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/1c-esb/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/build/context/pre_install -------------------------------------------------------------------------------- /docker/1c-esb/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/build/docker-build.sh -------------------------------------------------------------------------------- /docker/1c-esb/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/build/dockerfile -------------------------------------------------------------------------------- /docker/1c-esb/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb-ide/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb-ide/.env.tmpl -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb-ide/esb-ide-common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb-ide/esb-ide-common-compose.yml -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb-ide/esb-ide-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb-ide/esb-ide-docker-compose.yml -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb/.env.tmpl -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb/esb-common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb/esb-common-compose.yml -------------------------------------------------------------------------------- /docker/1c-esb/compose/esb/esb-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c-esb/compose/esb/esb-docker-compose.yml -------------------------------------------------------------------------------- /docker/1c/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/1c/build/context/post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/context/post_install -------------------------------------------------------------------------------- /docker/1c/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/context/pre_install -------------------------------------------------------------------------------- /docker/1c/build/context/pre_install_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/context/pre_install_mode -------------------------------------------------------------------------------- /docker/1c/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/docker-build.sh -------------------------------------------------------------------------------- /docker/1c/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/dockerfile -------------------------------------------------------------------------------- /docker/1c/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/1c/compose/crs/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/crs/.env.tmpl -------------------------------------------------------------------------------- /docker/1c/compose/crs/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/crs/common-compose.yml -------------------------------------------------------------------------------- /docker/1c/compose/crs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/crs/docker-compose.yml -------------------------------------------------------------------------------- /docker/1c/compose/ibsrv/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/ibsrv/.env.tmpl -------------------------------------------------------------------------------- /docker/1c/compose/ibsrv/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/ibsrv/common-compose.yml -------------------------------------------------------------------------------- /docker/1c/compose/ibsrv/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/ibsrv/docker-compose.yml -------------------------------------------------------------------------------- /docker/1c/compose/server/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/server/.env.tmpl -------------------------------------------------------------------------------- /docker/1c/compose/server/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/server/common-compose.yml -------------------------------------------------------------------------------- /docker/1c/compose/server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/1c/compose/server/docker-compose.yml -------------------------------------------------------------------------------- /docker/common_context/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/common_context/.arg.tmpl -------------------------------------------------------------------------------- /docker/common_context/.env.tmpl: -------------------------------------------------------------------------------- 1 | ## Common options 2 | 3 | ### OS 4 | 5 | TZ="${TZ}" 6 | -------------------------------------------------------------------------------- /docker/common_context/build/aptly_repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/common_context/build/aptly_repo -------------------------------------------------------------------------------- /docker/common_context/build/certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/common_context/build/certs -------------------------------------------------------------------------------- /docker/common_context/build/gosu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/common_context/build/gosu -------------------------------------------------------------------------------- /docker/common_context/build/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/common_context/build/install -------------------------------------------------------------------------------- /docker/diagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/README.md -------------------------------------------------------------------------------- /docker/diagrams/draw-io/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/draw-io/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/diagrams/draw-io/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/draw-io/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/diagrams/draw-io/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/draw-io/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/diagrams/draw-io/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/draw-io/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/diagrams/plantuml/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/plantuml/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/diagrams/plantuml/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/plantuml/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/diagrams/plantuml/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/plantuml/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/diagrams/plantuml/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/diagrams/plantuml/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/docker-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/README.md -------------------------------------------------------------------------------- /docker/docker-registry/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/docker-registry/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/docker-registry/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-registry/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/docker-registry/compose/docker_registry_conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/docker_registry_conf.tmpl -------------------------------------------------------------------------------- /docker/docker-registry/compose/docker_registry_htpasswd.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/docker-registry/compose/docker_registry_htpasswd.tmpl -------------------------------------------------------------------------------- /docker/fluent-bit/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/fluent-bit/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/fluent-bit/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/fluent-bit/compose/oc-tech-journal/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/oc-tech-journal/.env.tmpl -------------------------------------------------------------------------------- /docker/fluent-bit/compose/oc-tech-journal/oc-techlog-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/oc-tech-journal/oc-techlog-compose.yml -------------------------------------------------------------------------------- /docker/fluent-bit/compose/oc-tech-journal/oc_techlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/oc-tech-journal/oc_techlog.conf -------------------------------------------------------------------------------- /docker/fluent-bit/compose/oc-tech-journal/oc_techlog_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/oc-tech-journal/oc_techlog_filter.lua -------------------------------------------------------------------------------- /docker/fluent-bit/compose/oc-tech-journal/oc_techlog_parsers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/fluent-bit/compose/oc-tech-journal/oc_techlog_parsers.conf -------------------------------------------------------------------------------- /docker/gitlab-ce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/README.md -------------------------------------------------------------------------------- /docker/gitlab-ce/build/gitlab-auto-mr/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/build/gitlab-auto-mr/.arg.tmpl -------------------------------------------------------------------------------- /docker/gitlab-ce/build/gitlab-auto-mr/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/build/gitlab-auto-mr/context/pre_install -------------------------------------------------------------------------------- /docker/gitlab-ce/build/gitlab-auto-mr/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/build/gitlab-auto-mr/docker-build.sh -------------------------------------------------------------------------------- /docker/gitlab-ce/build/gitlab-auto-mr/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/build/gitlab-auto-mr/dockerfile -------------------------------------------------------------------------------- /docker/gitlab-ce/build/gitlab-auto-mr/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/build/gitlab-auto-mr/entrypoint.sh -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab-runner/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab-runner/.env.tmpl -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab-runner/gitlab-runner-common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab-runner/gitlab-runner-common-compose.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab-runner/gitlab-runner-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab-runner/gitlab-runner-docker-compose.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/.env.tmpl -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/gitlab-common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/gitlab-common-compose.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/gitlab-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/gitlab-docker-compose.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/gitlab-docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/gitlab-docker-stack.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/gitlab_conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/gitlab_conf.tmpl -------------------------------------------------------------------------------- /docker/gitlab-ce/compose/gitlab/update-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/compose/gitlab/update-config.sh -------------------------------------------------------------------------------- /docker/gitlab-ce/gitlab-ci/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/gitlab-ci/.gitlab-ci.yml -------------------------------------------------------------------------------- /docker/gitlab-ce/gitlab-ci/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/gitlab-ce/gitlab-ci/config.toml -------------------------------------------------------------------------------- /docker/hasp/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/hasp/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/build/context/pre_install -------------------------------------------------------------------------------- /docker/hasp/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/build/docker-build.sh -------------------------------------------------------------------------------- /docker/hasp/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/build/dockerfile -------------------------------------------------------------------------------- /docker/hasp/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/hasp/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/hasp/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/hasp/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/imagick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/README.md -------------------------------------------------------------------------------- /docker/imagick/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/imagick/build/.gitignore: -------------------------------------------------------------------------------- 1 | /deb 2 | -------------------------------------------------------------------------------- /docker/imagick/build/context/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/context/compile -------------------------------------------------------------------------------- /docker/imagick/build/context/post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/context/post_install -------------------------------------------------------------------------------- /docker/imagick/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/context/pre_install -------------------------------------------------------------------------------- /docker/imagick/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/docker-build.sh -------------------------------------------------------------------------------- /docker/imagick/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/imagick/build/dockerfile -------------------------------------------------------------------------------- /docker/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/init.sh -------------------------------------------------------------------------------- /docker/jdk/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/jdk/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/jdk/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/jdk/build/context/pre_install -------------------------------------------------------------------------------- /docker/jdk/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/jdk/build/docker-build.sh -------------------------------------------------------------------------------- /docker/jdk/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/jdk/build/dockerfile -------------------------------------------------------------------------------- /docker/mssql/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/mssql/build/context/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/context/install.ps1 -------------------------------------------------------------------------------- /docker/mssql/build/docker-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/docker-build.ps1 -------------------------------------------------------------------------------- /docker/mssql/build/docker-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/docker-init.ps1 -------------------------------------------------------------------------------- /docker/mssql/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/dockerfile -------------------------------------------------------------------------------- /docker/mssql/build/entrypoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/mssql/build/entrypoint.ps1 -------------------------------------------------------------------------------- /docker/nginx/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/nginx/build/context/post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/build/context/post_install -------------------------------------------------------------------------------- /docker/nginx/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/build/docker-build.sh -------------------------------------------------------------------------------- /docker/nginx/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/build/dockerfile -------------------------------------------------------------------------------- /docker/nginx/build/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/build/stream.conf -------------------------------------------------------------------------------- /docker/nginx/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/nginx/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/nginx/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/nginx/compose/nginx_conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/nginx_conf.tmpl -------------------------------------------------------------------------------- /docker/nginx/compose/stream_conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/stream_conf.tmpl -------------------------------------------------------------------------------- /docker/nginx/compose/update-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/nginx/compose/update-config.sh -------------------------------------------------------------------------------- /docker/opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/opensearch/README.md -------------------------------------------------------------------------------- /docker/opensearch/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/opensearch/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/opensearch/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/opensearch/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/opensearch/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/opensearch/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/os/linux_deb/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/linux_deb/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/os/linux_deb/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/linux_deb/build/context/pre_install -------------------------------------------------------------------------------- /docker/os/linux_deb/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/linux_deb/build/docker-build.sh -------------------------------------------------------------------------------- /docker/os/linux_deb/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/linux_deb/build/dockerfile -------------------------------------------------------------------------------- /docker/os/windows/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/windows/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/os/windows/build/LogMonitorConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/windows/build/LogMonitorConfig.json -------------------------------------------------------------------------------- /docker/os/windows/build/context/pre_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/windows/build/context/pre_install.ps1 -------------------------------------------------------------------------------- /docker/os/windows/build/docker-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/windows/build/docker-build.ps1 -------------------------------------------------------------------------------- /docker/os/windows/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/os/windows/build/dockerfile -------------------------------------------------------------------------------- /docker/portainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/portainer/README.md -------------------------------------------------------------------------------- /docker/portainer/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/portainer/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/portainer/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/portainer/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/portainer/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/portainer/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/portainer/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/portainer/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/postgres/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/postgres/build/context/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/context/install -------------------------------------------------------------------------------- /docker/postgres/build/context/post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/context/post_install -------------------------------------------------------------------------------- /docker/postgres/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/context/pre_install -------------------------------------------------------------------------------- /docker/postgres/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/docker-build.sh -------------------------------------------------------------------------------- /docker/postgres/build/docker-ensure-initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/docker-ensure-initdb.sh -------------------------------------------------------------------------------- /docker/postgres/build/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/postgres/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/build/dockerfile -------------------------------------------------------------------------------- /docker/postgres/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/postgres/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/postgres/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/postgres/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/postgres/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/slc/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/slc/build/context/pre_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/build/context/pre_install -------------------------------------------------------------------------------- /docker/slc/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/build/docker-build.sh -------------------------------------------------------------------------------- /docker/slc/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/build/dockerfile -------------------------------------------------------------------------------- /docker/slc/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/slc/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/slc/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/slc/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/README.md -------------------------------------------------------------------------------- /docker/sonarqube/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/sonarqube/build/context/post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/build/context/post_install -------------------------------------------------------------------------------- /docker/sonarqube/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/build/docker-build.sh -------------------------------------------------------------------------------- /docker/sonarqube/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/build/dockerfile -------------------------------------------------------------------------------- /docker/sonarqube/compose/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/compose/.env.tmpl -------------------------------------------------------------------------------- /docker/sonarqube/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/sonarqube/compose/depends_on_postgres/depends_on_postgres-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/compose/depends_on_postgres/depends_on_postgres-compose.yml -------------------------------------------------------------------------------- /docker/sonarqube/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/sonarqube/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/sonarqube/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/step-ca-cli/build/.arg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/.arg.tmpl -------------------------------------------------------------------------------- /docker/step-ca-cli/build/context/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/context/install -------------------------------------------------------------------------------- /docker/step-ca-cli/build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/docker-build.sh -------------------------------------------------------------------------------- /docker/step-ca-cli/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/dockerfile -------------------------------------------------------------------------------- /docker/step-ca-cli/build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/entrypoint.sh -------------------------------------------------------------------------------- /docker/step-ca-cli/build/send_sighup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build/send_sighup.sh -------------------------------------------------------------------------------- /docker/step-ca-cli/build_nginx/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build_nginx/dockerfile -------------------------------------------------------------------------------- /docker/step-ca-cli/build_nginx/step-ca-acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build_nginx/step-ca-acme -------------------------------------------------------------------------------- /docker/step-ca-cli/build_nginx/step-ca-acme-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build_nginx/step-ca-acme-init.sh -------------------------------------------------------------------------------- /docker/step-ca-cli/build_nginx/step-ca-acme-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build_nginx/step-ca-acme-start.sh -------------------------------------------------------------------------------- /docker/step-ca-cli/build_nginx/webroot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/build_nginx/webroot.conf -------------------------------------------------------------------------------- /docker/step-ca-cli/compose/common-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/compose/common-compose.yml -------------------------------------------------------------------------------- /docker/step-ca-cli/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/compose/docker-compose.yml -------------------------------------------------------------------------------- /docker/step-ca-cli/compose/docker-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/compose/docker-stack.yml -------------------------------------------------------------------------------- /docker/step-ca-cli/compose/env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/step-ca-cli/compose/env.tmpl -------------------------------------------------------------------------------- /docker/vault/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/vault/.env.tmpl -------------------------------------------------------------------------------- /docker/vault/build/.arg.tmpl: -------------------------------------------------------------------------------- 1 | VAULT_TAG=hashicorp/vault:1.19 -------------------------------------------------------------------------------- /docker/vault/build/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/vault/build/dockerfile -------------------------------------------------------------------------------- /docker/vault/build/vault-config-tsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/vault/build/vault-config-tsl.json -------------------------------------------------------------------------------- /docker/vault/build/vault-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/vault/build/vault-config.json -------------------------------------------------------------------------------- /docker/vault/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agibalovsa/-1C_DevOps/HEAD/docker/vault/compose/docker-compose.yml --------------------------------------------------------------------------------