VirtualDiskImage Working but needs work to automate

This commit is contained in:
Antoine Kurukchi 2018-12-19 23:43:57 +00:00
parent 23d8947d34
commit 9289e92187
7 changed files with 12 additions and 14 deletions

View File

@ -1,8 +1,12 @@
FROM jlesage/baseimage-gui:alpine-3.7 FROM jlesage/baseimage-gui:ubuntu-16.04
ENV APP_NAME="iDRAC 6" ENV APP_NAME="iDRAC 6"
RUN apk add --no-cache openjdk7-jre RUN apt-get update
RUN apt-get -y install software-properties-common
RUN add-apt-repository ppa:openjdk-r/ppa
RUN apt-get update
RUN apt-get -y install openjdk-7-jdk
RUN mkdir /app && \ RUN mkdir /app && \
chown ${USER_ID}:${GROUP_ID} /app chown ${USER_ID}:${GROUP_ID} /app

BIN
app/avctKVM.jar Normal file

Binary file not shown.

Binary file not shown.

BIN
app/lib/avctVMLinux64.jar Normal file

Binary file not shown.

BIN
app/lib/libavctKVMIO.so Normal file

Binary file not shown.

BIN
app/lib/libavmlinux.so Normal file

Binary file not shown.

View File

@ -3,21 +3,15 @@ version: '2'
services: services:
idrac1: idrac1:
image: domistyle/idrac6 image: domistyle/idrac6
build:
context: ./
restart: always restart: always
volumes:
- ./app:/app
ports: ports:
- 5800:5800 - 5800:5800
- 5900:5900 - 5900:5900
environment: environment:
- IDRAC_HOST=idrac1.example.org - IDRAC_HOST=192.168.0.1
- IDRAC_USER=root - IDRAC_USER=root
- IDRAC_PASSWORD=1234 - IDRAC_PASSWORD=calvin
idrac2:
image: domistyle/idrac6
restart: always
ports:
- 5801:5800
- 5901:5900
environment:
- IDRAC_HOST=idrac2.example.org
- IDRAC_USER=root
- IDRAC_PASSWORD=1234