forked from splunk/pytest-splunk-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-ci.yml
More file actions
39 lines (38 loc) · 1 KB
/
docker-compose-ci.yml
File metadata and controls
39 lines (38 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#Splunk Connect for Syslog (SC4S) by Splunk, Inc.
#
#To the extent possible under law, the person who associated CC0 with
#Splunk Connect for Syslog (SC4S) has waived all copyright and related or neighboring rights
#to Splunk Connect for Syslog (SC4S).
#
#You should have received a copy of the CC0 legalcode along with this
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
version: "3.7"
services:
test:
build:
context: .
dockerfile: Dockerfile.tests
links:
- splunk
volumes:
- results:/work/test-results
splunk:
build:
context: .
dockerfile: Dockerfile.splunk
args:
SPLUNK_APP: TA_fiction
SPLUNK_VERSION: ${SPLUNK_VERSION}
SOURCE_PACKAGE: ${SOURCE_PACKAGE}
ports:
- "8000"
- "8088"
- "8089"
- "9997"
environment:
- SPLUNK_PASSWORD=${SPLUNK_PASSWORD}
- SPLUNK_HEC_TOKEN=${SPLUNK_HEC_TOKEN}
- SPLUNK_START_ARGS=--accept-license
volumes:
results:
external: false