Skip to content

Commit 1b41ca3

Browse files
committed
Update docker-compose, .gitignore
1 parent 5317fb9 commit 1b41ca3

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

.gitignore

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
build/
2+
client/
23
.git
34
tests/html/*
45
*.out
56
*DS_Store
67
*.sublime-*
7-
*.pyc
88
.idea/*
9-
npm-debug.log
10-
server.py
9+
*.log
1110
.buildcache
12-
v8.log
1311
cover_html
1412
.coverage_data
1513
.coverage_debug
1614
*.swp
1715
.splunkrc
16+
.env
1817
*.zip
1918
test_logs/*
2019
docs/
21-
.nyc_output/*
22-
/node_modules/*
20+
.nyc_output/
21+
node_modules/
22+
.vscode/
23+
.code-workspace

docker-compose.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: '3.8'
2-
31
services:
4-
splunk:
5-
image: "splunk/splunk:latest"
6-
container_name: splunk
7-
environment:
8-
- SPLUNK_START_ARGS=--accept-license
9-
- SPLUNK_HEC_TOKEN=11111111-1111-1111-1111-1111111111113
10-
- SPLUNK_PASSWORD=changed!
11-
- SPLUNK_APPS_URL=https://github.com/splunk/sdk-app-collection/releases/download/v1.1.0/sdkappcollection.tgz
12-
ports:
13-
- 8000:8000
14-
- 8088:8088
15-
- 8089:8089
16-
healthcheck:
17-
test: ['CMD', 'curl', '-f', 'http://localhost:8000']
18-
interval: 5s
19-
timeout: 5s
20-
retries: 20
2+
splunk:
3+
image: "splunk/splunk:${SPLUNK_VERSION}"
4+
container_name: splunk
5+
platform: linux/amd64
6+
environment:
7+
- SPLUNK_START_ARGS=--accept-license
8+
- SPLUNK_GENERAL_TERMS=--accept-sgt-current-at-splunk-com
9+
- SPLUNK_HEC_TOKEN=11111111-1111-1111-1111-1111111111113
10+
- SPLUNK_PASSWORD=changed!
11+
- SPLUNK_APPS_URL=https://github.com/splunk/sdk-app-collection/releases/latest/download/sdkappcollection.tgz
12+
ports:
13+
- "8000:8000"
14+
- "8088:8088"
15+
- "8089:8089"
16+
healthcheck:
17+
test: ["CMD", "curl", "-f", "http://localhost:8000"]
18+
interval: 5s
19+
timeout: 5s
20+
retries: 20

0 commit comments

Comments
 (0)