2019-03-28 17:23:40 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
peppa:
|
|
|
|
hostname: kerberos.build.elastic.co
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
command: "bash /fixture/src/main/resources/provision/peppa.sh"
|
|
|
|
volumes:
|
2019-07-08 17:49:33 +03:00
|
|
|
- ./testfixtures_shared/shared/peppa:/fixture/build
|
2019-06-13 13:02:16 +10:00
|
|
|
# containers have bad entropy so mount /dev/urandom. Less secure but this is a test fixture.
|
|
|
|
- /dev/urandom:/dev/random
|
2019-03-28 17:23:40 +02:00
|
|
|
ports:
|
|
|
|
- "4444"
|
|
|
|
- "88/udp"
|
|
|
|
hdfs:
|
|
|
|
hostname: kerberos.build.elastic.co
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
command: "bash /fixture/src/main/resources/provision/hdfs.sh"
|
|
|
|
volumes:
|
2019-07-08 17:49:33 +03:00
|
|
|
- ./testfixtures_shared/shared/hdfs:/fixture/build
|
2019-06-13 13:02:16 +10:00
|
|
|
# containers have bad entropy so mount /dev/urandom. Less secure but this is a test fixture.
|
|
|
|
- /dev/urandom:/dev/random
|
2019-03-28 17:23:40 +02:00
|
|
|
ports:
|
|
|
|
- "4444"
|
|
|
|
- "88/udp"
|