Add new example docker-compose file

This commit is contained in:
Dominik 2019-01-03 12:02:59 +01:00
parent e7dab5d427
commit 36ad518510
1 changed files with 31 additions and 0 deletions

31
docker-compose.yml Normal file
View File

@ -0,0 +1,31 @@
version: '2'
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
environment:
- IDRAC_HOST=idrac2.example.org
- IDRAC_USER=root
- IDRAC_PASSWORD=1234
volumes:
- /path/to/app:/app
- /path/to/media:/vmedia
- /path/to/screenshots:/screenshots