├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── configuration ├── bim.conf ├── cmdbuild.conf ├── database.conf ├── gis.conf └── workflow.conf ├── docker-compose-bats.yml ├── docker-compose.yml ├── docker-entrypoint.sh └── test.bats /.gitignore: -------------------------------------------------------------------------------- 1 | /docker-compose-custom.yml 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/README.md -------------------------------------------------------------------------------- /configuration/bim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/configuration/bim.conf -------------------------------------------------------------------------------- /configuration/cmdbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/configuration/cmdbuild.conf -------------------------------------------------------------------------------- /configuration/database.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/configuration/database.conf -------------------------------------------------------------------------------- /configuration/gis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/configuration/gis.conf -------------------------------------------------------------------------------- /configuration/workflow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/configuration/workflow.conf -------------------------------------------------------------------------------- /docker-compose-bats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/docker-compose-bats.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsilva4-zz/docker-openmaint/HEAD/test.bats --------------------------------------------------------------------------------