Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmohr/docker-ovirt-postgres
Slightly modified version of the official postgres image from dockerhub which works with ovirt-engine.
https://github.com/rmohr/docker-ovirt-postgres
Last synced: 14 days ago
JSON representation
Slightly modified version of the official postgres image from dockerhub which works with ovirt-engine.
- Host: GitHub
- URL: https://github.com/rmohr/docker-ovirt-postgres
- Owner: rmohr
- License: gpl-3.0
- Created: 2016-03-04T13:36:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T08:26:17.000Z (about 6 years ago)
- Last Synced: 2024-10-11T14:41:20.515Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ovirt-postgres
Slightly modified version of the official postgres image from dockerhub which works with ovirt-engine.Currently the only addition is that it sets `max_connections` to 150 which is required by ovirt-engine.
Minimal usage:
```bash
docker run --name ovirt-postgres -e POSTGRES_PASSWORD=engine -e POSTGRES_USER=engine -e POSTGRES_DB=engine -d rmohr/ovirt-postgres
```The numer of the allowed connections can be customized by setting the environment variable `MAX_CONNECTIONS` to the desired value:
```bash
docker [...] -e MAX_CONNECTIONS=200 -d rmohr/ovirt-postgres
```