2020-01-08 13:05:23 +01:00
|
|
|
version: '3.1'
|
2019-01-03 12:02:59 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
idrac1:
|
|
|
|
image: domistyle/idrac6
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 5800:5800
|
|
|
|
- 5900:5900
|
|
|
|
environment:
|
|
|
|
- IDRAC_HOST=idrac1.example.org
|
|
|
|
- IDRAC_USER=root
|
|
|
|
- IDRAC_PASSWORD=1234
|
2022-03-01 04:14:42 +01:00
|
|
|
# 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
|
2019-01-03 12:02:59 +01:00
|
|
|
volumes:
|
|
|
|
- /path/to/app:/app
|
|
|
|
- /path/to/media:/vmedia
|
|
|
|
- /path/to/screenshots:/screenshots
|
|
|
|
idrac2:
|
|
|
|
image: domistyle/idrac6
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 5801:5800
|
|
|
|
- 5901:5900
|
2020-01-08 13:05:23 +01:00
|
|
|
secrets:
|
|
|
|
- idrac_host
|
|
|
|
- idrac_user
|
|
|
|
- idrac_password
|
2019-01-03 12:02:59 +01:00
|
|
|
volumes:
|
|
|
|
- /path/to/app:/app
|
|
|
|
- /path/to/media:/vmedia
|
|
|
|
- /path/to/screenshots:/screenshots
|
2020-01-08 13:05:23 +01:00
|
|
|
secrets:
|
|
|
|
idrac_host:
|
|
|
|
file: ./idrac_host.txt
|
|
|
|
idrac_user:
|
|
|
|
file: ./idrac_user.txt
|
|
|
|
idrac_password:
|
|
|
|
file: ./idrac_password.txt
|