├── .env.dist ├── .github ├── actions │ ├── build-bareos-app │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── prepare-bareos-app │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── push-bareos-app │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ └── test-bareos-app │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh ├── dependabot.yml └── workflows │ ├── ci-api.yml │ ├── ci-bareos-app.tmpl │ ├── ci-client.yml │ ├── ci-director.yml │ ├── ci-storage.yml │ ├── ci-webui.yml │ ├── push-readme.yml │ ├── run-compose.yml │ └── test-n-lint.yml ├── .gitignore ├── .mdlrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── 21-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── 22-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── bareos-db-migration ├── Dockerfile ├── README.md ├── docker-compose.yml └── docker-entrypoint.sh ├── client ├── 16-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 17-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 17-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 18-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 18-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 19-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 19-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 20-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 20-ubuntu │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 21-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 21-ubuntu │ ├── Dockerfile │ └── docker-entrypoint.sh └── 22-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── director-mysql ├── 16-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 17-alpine │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 17-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 18-alpine │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 18-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 19-alpine │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 19-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 20-alpine │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify └── 20-ubuntu │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify ├── director-pgsql ├── 16-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 17-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 18-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 19-alpine │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 19-ubuntu │ ├── Dockerfile-deprecated │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 20-alpine │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 20-ubuntu │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 21-alpine │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify ├── 21-ubuntu │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify └── 22-alpine │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── webhook-notify ├── docker-compose-alpine-mysql-v2.yml ├── docker-compose-alpine-mysql.yml ├── docker-compose-alpine-pgsql.yml ├── docker-compose-ubuntu-mysql.yml ├── docker-compose-ubuntu-pgsql.yml ├── docker-compose.yml ├── storage ├── 16-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 17-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 17-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 18-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 18-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 19-alpine │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 19-ubuntu │ ├── Dockerfile-deprecated │ └── docker-entrypoint.sh ├── 20-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 20-ubuntu │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 21-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 21-ubuntu │ ├── Dockerfile │ └── docker-entrypoint.sh └── 22-alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── webui ├── 16-ubuntu ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 17-alpine ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 17-ubuntu ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 18-alpine ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 18-ubuntu ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 19-alpine ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 19-ubuntu ├── Dockerfile-deprecated └── docker-entrypoint.sh ├── 20-alpine ├── Dockerfile └── docker-entrypoint.sh ├── 20-ubuntu ├── Dockerfile └── docker-entrypoint.sh ├── 21-alpine ├── Dockerfile └── docker-entrypoint.sh ├── 21-ubuntu ├── Dockerfile └── docker-entrypoint.sh └── 22-alpine ├── Dockerfile └── docker-entrypoint.sh /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/actions/build-bareos-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/build-bareos-app/Dockerfile -------------------------------------------------------------------------------- /.github/actions/build-bareos-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/build-bareos-app/action.yml -------------------------------------------------------------------------------- /.github/actions/build-bareos-app/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/build-bareos-app/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/prepare-bareos-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/prepare-bareos-app/Dockerfile -------------------------------------------------------------------------------- /.github/actions/prepare-bareos-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/prepare-bareos-app/action.yml -------------------------------------------------------------------------------- /.github/actions/prepare-bareos-app/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/prepare-bareos-app/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/push-bareos-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/push-bareos-app/Dockerfile -------------------------------------------------------------------------------- /.github/actions/push-bareos-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/push-bareos-app/action.yml -------------------------------------------------------------------------------- /.github/actions/push-bareos-app/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/push-bareos-app/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/test-bareos-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/test-bareos-app/Dockerfile -------------------------------------------------------------------------------- /.github/actions/test-bareos-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/test-bareos-app/action.yml -------------------------------------------------------------------------------- /.github/actions/test-bareos-app/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/actions/test-bareos-app/entrypoint.sh -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-api.yml -------------------------------------------------------------------------------- /.github/workflows/ci-bareos-app.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-bareos-app.tmpl -------------------------------------------------------------------------------- /.github/workflows/ci-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-client.yml -------------------------------------------------------------------------------- /.github/workflows/ci-director.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-director.yml -------------------------------------------------------------------------------- /.github/workflows/ci-storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-storage.yml -------------------------------------------------------------------------------- /.github/workflows/ci-webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/ci-webui.yml -------------------------------------------------------------------------------- /.github/workflows/push-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/push-readme.yml -------------------------------------------------------------------------------- /.github/workflows/run-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/run-compose.yml -------------------------------------------------------------------------------- /.github/workflows/test-n-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/.github/workflows/test-n-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | local/ 2 | .env 3 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | rules "~MD013" 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: bash 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/README.md -------------------------------------------------------------------------------- /api/21-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/api/21-alpine/Dockerfile -------------------------------------------------------------------------------- /api/21-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/api/21-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /api/22-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/api/22-alpine/Dockerfile -------------------------------------------------------------------------------- /api/22-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/api/22-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /bareos-db-migration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/bareos-db-migration/Dockerfile -------------------------------------------------------------------------------- /bareos-db-migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/bareos-db-migration/README.md -------------------------------------------------------------------------------- /bareos-db-migration/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/bareos-db-migration/docker-compose.yml -------------------------------------------------------------------------------- /bareos-db-migration/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/bareos-db-migration/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/16-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/16-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/16-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/16-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/17-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/17-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/17-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/17-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/17-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/17-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/17-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/17-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/18-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/18-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/18-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/18-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/18-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/18-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/18-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/18-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/19-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/19-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/19-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/19-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/19-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/19-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /client/19-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/19-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/20-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/20-alpine/Dockerfile -------------------------------------------------------------------------------- /client/20-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/20-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/20-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/20-ubuntu/Dockerfile -------------------------------------------------------------------------------- /client/20-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/20-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/21-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/21-alpine/Dockerfile -------------------------------------------------------------------------------- /client/21-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/21-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/21-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/21-ubuntu/Dockerfile -------------------------------------------------------------------------------- /client/21-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/21-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /client/22-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/22-alpine/Dockerfile -------------------------------------------------------------------------------- /client/22-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/client/22-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/16-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/16-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/16-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/16-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/16-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/16-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-mysql/17-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/17-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/17-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-alpine/webhook-notify -------------------------------------------------------------------------------- /director-mysql/17-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/17-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/17-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/17-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-mysql/18-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/18-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/18-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-alpine/webhook-notify -------------------------------------------------------------------------------- /director-mysql/18-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/18-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/18-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/18-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-mysql/19-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/19-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/19-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-alpine/webhook-notify -------------------------------------------------------------------------------- /director-mysql/19-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-mysql/19-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/19-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/19-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-mysql/20-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-alpine/Dockerfile -------------------------------------------------------------------------------- /director-mysql/20-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/20-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-alpine/webhook-notify -------------------------------------------------------------------------------- /director-mysql/20-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-ubuntu/Dockerfile -------------------------------------------------------------------------------- /director-mysql/20-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-mysql/20-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-mysql/20-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/16-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/16-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-pgsql/16-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/16-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/16-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/16-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/17-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/17-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-pgsql/17-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/17-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/17-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/17-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/18-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/18-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-pgsql/18-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/18-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/18-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/18-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/19-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-pgsql/19-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/19-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-alpine/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/19-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /director-pgsql/19-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/19-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/19-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/20-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-alpine/Dockerfile -------------------------------------------------------------------------------- /director-pgsql/20-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/20-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-alpine/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/20-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-ubuntu/Dockerfile -------------------------------------------------------------------------------- /director-pgsql/20-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/20-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/20-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/21-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-alpine/Dockerfile -------------------------------------------------------------------------------- /director-pgsql/21-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/21-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-alpine/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/21-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-ubuntu/Dockerfile -------------------------------------------------------------------------------- /director-pgsql/21-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/21-ubuntu/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/21-ubuntu/webhook-notify -------------------------------------------------------------------------------- /director-pgsql/22-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/22-alpine/Dockerfile -------------------------------------------------------------------------------- /director-pgsql/22-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/22-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /director-pgsql/22-alpine/webhook-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/director-pgsql/22-alpine/webhook-notify -------------------------------------------------------------------------------- /docker-compose-alpine-mysql-v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/docker-compose-alpine-mysql-v2.yml -------------------------------------------------------------------------------- /docker-compose-alpine-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/docker-compose-alpine-mysql.yml -------------------------------------------------------------------------------- /docker-compose-alpine-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/docker-compose-alpine-pgsql.yml -------------------------------------------------------------------------------- /docker-compose-ubuntu-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/docker-compose-ubuntu-mysql.yml -------------------------------------------------------------------------------- /docker-compose-ubuntu-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/docker-compose-ubuntu-pgsql.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | docker-compose-alpine-pgsql.yml -------------------------------------------------------------------------------- /storage/16-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/16-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/16-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/16-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/17-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/17-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/17-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/17-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/17-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/17-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/17-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/17-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/18-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/18-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/18-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/18-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/18-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/18-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/18-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/18-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/19-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/19-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/19-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/19-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/19-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/19-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /storage/19-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/19-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/20-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/20-alpine/Dockerfile -------------------------------------------------------------------------------- /storage/20-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/20-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/20-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/20-ubuntu/Dockerfile -------------------------------------------------------------------------------- /storage/20-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/20-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/21-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/21-alpine/Dockerfile -------------------------------------------------------------------------------- /storage/21-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/21-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/21-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/21-ubuntu/Dockerfile -------------------------------------------------------------------------------- /storage/21-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/21-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /storage/22-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/22-alpine/Dockerfile -------------------------------------------------------------------------------- /storage/22-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/storage/22-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/16-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/16-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/16-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/16-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/17-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/17-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/17-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/17-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/17-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/17-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/17-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/17-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/18-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/18-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/18-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/18-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/18-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/18-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/18-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/18-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/19-alpine/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/19-alpine/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/19-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/19-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/19-ubuntu/Dockerfile-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/19-ubuntu/Dockerfile-deprecated -------------------------------------------------------------------------------- /webui/19-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/19-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/20-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/20-alpine/Dockerfile -------------------------------------------------------------------------------- /webui/20-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/20-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/20-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/20-ubuntu/Dockerfile -------------------------------------------------------------------------------- /webui/20-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/20-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/21-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/21-alpine/Dockerfile -------------------------------------------------------------------------------- /webui/21-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/21-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/21-ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/21-ubuntu/Dockerfile -------------------------------------------------------------------------------- /webui/21-ubuntu/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/21-ubuntu/docker-entrypoint.sh -------------------------------------------------------------------------------- /webui/22-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/22-alpine/Dockerfile -------------------------------------------------------------------------------- /webui/22-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barcus/bareos/HEAD/webui/22-alpine/docker-entrypoint.sh --------------------------------------------------------------------------------