41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
---
|
|
eidastest_compose:
|
|
version: "3"
|
|
services:
|
|
chrome:
|
|
image: selenium/standalone-chrome:3.141.59-20200719
|
|
container_name: standalone-chrome
|
|
volumes:
|
|
- /dev/shm:/dev/shm
|
|
ports:
|
|
- "4444:4444"
|
|
environment:
|
|
- DBUS_SESSION_BUS_ADDRESS=/dev/null
|
|
- START_XVFB=false
|
|
- NODE_MAX_SESSION=4
|
|
- NODE_MAX_INSTANCES=4
|
|
logging:
|
|
driver: none
|
|
restart: on-failure
|
|
|
|
eidastest-testid:
|
|
image: docker.sunet.se/eidastest-testid:2.0.6
|
|
container_name: eidastest-testid
|
|
ports:
|
|
- "443:8099"
|
|
environment:
|
|
- CERTNAME=eidastest-1.qa.sveidas.se
|
|
volumes:
|
|
- "/etc/ssl:/etc/ssl"
|
|
- /dev/shm:/dev/shm
|
|
depends_on:
|
|
- chrome
|
|
restart: on-failure
|
|
scheduler1:
|
|
image: mcuadros/ofelia:latest
|
|
container_name: supvervising_standalone-chrome
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./config.ini:/etc/ofelia/config.ini
|
|
depends_on:
|
|
- chrome
|