diff --git a/README.md b/README.md index ef24ca9..ff14cc8 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ COmanage Registry and deployments ready for production. * [Simple deployment for evaluation, no persistence](recipes/simple-no-persistence/README.md) * [Simple deployment for evaluation with persistence](recipes/simple-with-persistence/README.md) * [Production deployment using Docker stacks with mod_auth_openidc and MariaDB](recipes/production-mod-auth-openidc-mariadb/README.md) +* [Production deployment using docker-compose with Shibboleth SP and PostgreSQL](recipes/production-shibboleth-sp-postgres/README.md) ## Dockerfile templates @@ -44,4 +45,6 @@ COmanage Registry and deployments ready for production. * [Example PostgreSQL](comanage-registry-postgres/README.md) image for use with COmanage Registry * [Example MariaDB](comanage-registry-mariadb/README.md) image for use with COmanage Registry * [Example OpenLDAP slapd](comanage-registry-slapd/README.md) image for use with COmanage Registry -* [Example Docker Compose](compose/README.md) file for deploying COmanage Registry +* [Example Docker stack compose file](comanage-registry-stack/README.md) +* [Example docker-compose file](comanage-registry-compose/README.md) + diff --git a/comanage-registry-compose/README.md b/comanage-registry-compose/README.md new file mode 100644 index 0000000..928c741 --- /dev/null +++ b/comanage-registry-compose/README.md @@ -0,0 +1,43 @@ + + +# Docker compose for COmanage Registry + +This is an example docker-compose file to deploy COmanage +Registry with the Shibboleth SP +for authentication, PostgreSQL database, and OpenLDAP +slapd using docker-compose (as opposed to Docker stack). + +See the individual image Dockerfile templates and README +files for details on how to inject +necessary deployment details and secrets. + +## Deploy + +``` +docker-compose --compose-file comanage-registry-shibboleth-sp-postgres-compose.yml up -d +``` + +## Tear Down + +``` +docker-compose --compose-file comanage-registry-shibboleth-sp-postgres-compose.yml down +```