indication / docker-webvirtmgr

Dockerfile for Webvirtmgr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Webvirtmgr Dockerfile

This repository contains Dockerfile of Webvirtmgr.

Installation

  1. Install Docker.

  2. Pull the image from Docker Hub

$ docker pull lemonlatte/docker-webvirtmgr

Usage

$ docker run -d -p 8080:8080 lemonlatte/docker-webvirtmgr

It may takes 2 or 3 seconds for setting up Django database.

Mount a Volume

You need to add a directory with its owner id "33".

mkdir /path/to/our/volume:/var/local/webvirtmgr
chown 33 /path/to/our/volume:/var/local/webvirtmgr

Then, you can mount this folder into your container.

$ docker run -d -p 8080:8080 -v /path/to/our/volume:/var/local/webvirtmgr lemonlatte/docker-webvirtmgr

About

Dockerfile for Webvirtmgr

License:MIT License


Languages

Language:Python 60.0%Language:Shell 40.0%