Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmohr/docker-ovirt-engine
Dockerized version of ovirt-engine, the management part of oVirt.
https://github.com/rmohr/docker-ovirt-engine
Last synced: 21 days ago
JSON representation
Dockerized version of ovirt-engine, the management part of oVirt.
- Host: GitHub
- URL: https://github.com/rmohr/docker-ovirt-engine
- Owner: rmohr
- License: gpl-3.0
- Created: 2016-03-04T13:45:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-19T15:17:46.000Z (almost 8 years ago)
- Last Synced: 2024-10-19T18:09:20.513Z (30 days ago)
- Language: Shell
- Size: 40 KB
- Stars: 7
- Watchers: 4
- Forks: 6
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ovirt-engine
[![Build Status](https://travis-ci.org/rmohr/docker-ovirt-engine.svg?branch=master)](https://travis-ci.org/rmohr/docker-ovirt-engine)
This repository is **deprecated**. This project is now part of oVirt and was moved to **https://github.com/oVirt/ovirt-container-engine**.
Dockerized version of ovirt-engine, the management part of oVirt.
## Run ovirt-engine
```bash
docker run --name ovirt-postgres -e POSTGRES_PASSWORD=engine -e POSTGRES_USER=engine -e POSTGRES_DB=engine -d rmohr/ovirt-postgres
docker run --name ovirt-engine --link ovirt-postgres:postgres -e OVIRT_PASSWORD=engine -p 8443:8443 -d rmohr/ovirt-engine```
Visit https://127.0.0.1:8443 and login with the user `admin` and the password
`engine`. Use a different value for the environment variable `OVIRT_PASSWORD`
to change the admin password.## Examine logs
```bash
docker logs ovirt-engine
```## Environment variables
### Database connection
```
ENV POSTGRES_USER engine # Postgres user
ENV POSTGRES_PASSWORD engine # Postgres password
ENV POSTGRES_DB engine # Postgres schema
ENV POSTGRES_HOST postgres # Postgres host
ENV POSTGRES_PORT 5432 # Postgres port
```### ovirt-engine
```
ENV OVIRT_FQDN localhost # Full qualified domain name of the engine
ENV OVIRT_PASSWORD engine # Admin password of the engine
ENV OVIRT_PKI_ORGANIZATION # PKI organization name
```