mirror of
https://github.com/DomiStyle/docker-idrac6.git
synced 2024-12-22 13:55:21 +01:00
42 lines
961 B
YAML
42 lines
961 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
idrac1:
|
|
image: domistyle/idrac6
|
|
restart: always
|
|
ports:
|
|
- 5800:5800
|
|
- 5900:5900
|
|
environment:
|
|
- IDRAC_HOST=idrac1.example.org
|
|
- IDRAC_USER=root
|
|
- IDRAC_PASSWORD=1234
|
|
# Experimental! To directly mount an iso as iDRAC virtual media,
|
|
# uncomment the below and set to a filename that appears in /vmedia
|
|
# - VIRTUAL_ISO=name_of_iso.iso
|
|
volumes:
|
|
- /path/to/app:/app
|
|
- /path/to/media:/vmedia
|
|
- /path/to/screenshots:/screenshots
|
|
idrac2:
|
|
image: domistyle/idrac6
|
|
restart: always
|
|
ports:
|
|
- 5801:5800
|
|
- 5901:5900
|
|
secrets:
|
|
- idrac_host
|
|
- idrac_user
|
|
- idrac_password
|
|
volumes:
|
|
- /path/to/app:/app
|
|
- /path/to/media:/vmedia
|
|
- /path/to/screenshots:/screenshots
|
|
secrets:
|
|
idrac_host:
|
|
file: ./idrac_host.txt
|
|
idrac_user:
|
|
file: ./idrac_user.txt
|
|
idrac_password:
|
|
file: ./idrac_password.txt
|