├── .gitignore ├── 4.1.10 ├── Dockerfile └── docker-entrypoint.sh ├── 4.1.11 ├── Dockerfile └── docker-entrypoint.sh ├── 4.1.12 ├── Dockerfile └── docker-entrypoint.sh ├── 4.1.8 ├── Dockerfile └── docker-entrypoint.sh ├── 4.1.9 ├── Dockerfile └── docker-entrypoint.sh ├── 4.2.0 ├── Dockerfile └── docker-entrypoint.sh ├── 4.2.1 ├── Dockerfile └── docker-entrypoint.sh ├── 4.2.2 ├── Dockerfile └── docker-entrypoint.sh ├── 4.2.3 ├── Dockerfile └── docker-entrypoint.sh ├── 4.2.4 ├── Dockerfile └── docker-entrypoint.sh ├── LICENSE ├── README.md ├── example-output └── example-output-4.2.2.md └── sample-provider.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /4.1.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.10/Dockerfile -------------------------------------------------------------------------------- /4.1.10/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.10/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.11/Dockerfile -------------------------------------------------------------------------------- /4.1.11/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.11/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.12/Dockerfile -------------------------------------------------------------------------------- /4.1.12/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.12/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.8/Dockerfile -------------------------------------------------------------------------------- /4.1.8/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.8/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.1.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.9/Dockerfile -------------------------------------------------------------------------------- /4.1.9/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.1.9/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.0/Dockerfile -------------------------------------------------------------------------------- /4.2.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.1/Dockerfile -------------------------------------------------------------------------------- /4.2.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.2/Dockerfile -------------------------------------------------------------------------------- /4.2.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.3/Dockerfile -------------------------------------------------------------------------------- /4.2.3/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.3/docker-entrypoint.sh -------------------------------------------------------------------------------- /4.2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.4/Dockerfile -------------------------------------------------------------------------------- /4.2.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/4.2.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/README.md -------------------------------------------------------------------------------- /example-output/example-output-4.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/example-output/example-output-4.2.2.md -------------------------------------------------------------------------------- /sample-provider.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjstealey/irods-provider-postgres/HEAD/sample-provider.env --------------------------------------------------------------------------------