mirror of
https://github.com/DomiStyle/docker-idrac6.git
synced 2024-12-22 13:55:21 +01:00
39 lines
781 B
YAML
39 lines
781 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
|
|
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
|